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