8 lines
149 B
Python
8 lines
149 B
Python
number = int(input('Enter number : '))
|
|
if number < 10:
|
|
print('too low')
|
|
elif 10 <= number < 20:
|
|
print('Correct')
|
|
else:
|
|
print('Too high')
|