E = int(input("ENTER A NUMBER: ")) if (E % 2) == 0: print(E, "is an even number") else: print(E, "is an odd number")