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