python-by-example-150-chall.../challenges35-44/challenge-040.py
2019-07-17 09:56:46 +03:00

4 lines
97 B
Python

number = int(input('Enter a number below 50 : '))
for i in range(50, number-1, -1):
print(i)