print(input("Put in a number: ")) num = 10 if num % 2 == 0: print(num, "is an even number") else: print(num, "is an odd number")