6 lines
136 B
Python
6 lines
136 B
Python
![]() |
number = int(input('Enter number between 10 to 20 : '))
|
||
|
if 10 < number < 20:
|
||
|
print('Thank you')
|
||
|
else:
|
||
|
print('Incorrect answer')
|