number = int(input( "Please give me a number ") ) if number % 2 == 0 : print(number, "is a even number " ) else: print(number, "is a odd number " )