evenorodd = int(input("what is your number: ")) if evenorodd % 2 == 0 : print( evenorodd, "is even") else : print("number is odd") #finished