abc=input("Enter a number: ") abc=int(abc) if (abc > 99): print("The number you entered is larger than 99") print("Thanks for using the program") elif (abc < 99): print("The number you entered is less than 99") print("Thanks for using the program") else: print("The number you entered is 99") print("Thanks for using the program")