python-by-example-150-chall.../challenges12-19/challenge-013.py
2019-07-17 09:56:46 +03:00

6 lines
116 B
Python

number = int(input('Enter number under 20 : '))
if number < 20:
print('Thank you')
else:
print('Too high')