number = int(input("Enter a number: ")) if (number % 2) == 0: print(number, 'is an even number') else: print(number, 'is an odd number')