6 lines
116 B
Python
6 lines
116 B
Python
number = int(input('Enter number under 20 : '))
|
|
if number < 20:
|
|
print('Thank you')
|
|
else:
|
|
print('Too high')
|