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