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