num1 = int(input("Enter a number")) if num1 % 2 == 0: print("even") else: print("odd")