Python menghitung satu hingga sepuluh

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