num = int(input("enter a number")) if num%2 == 0: print(num, "is an even number") elif num %2 != 0: print(num, "is an odd number")