4 lines
97 B
Python
4 lines
97 B
Python
number = int(input('Enter a number below 50 : '))
|
|
for i in range(50, number-1, -1):
|
|
print(i)
|