number = int(input("enter a number: ")) if number % 2: print(number, "is a odd number") else: print(number, "is a even number")