Python conta um a dez

count = 100
while count > 0 :
    print(count)
    count = count - 1
Impossible Ibex