num1 = int(input("Enter a number between 10 and 20: ")) if num1 <= 20 and num1 >= 10: print('Thank you') else: print('Incorrect')