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