num1 = int(input("Enter a number between 10 and 20: ")) if num1 >= 20: print('Too High') elif num1 <= 10: print('Too low') else: print('Correct')