num = int(input("Enter a number: ")) if (num % 2) == 0: print("{0} is Even".format(num)) else: print("{0} is Odd".format(num)) # Made by Tristan, only for the eyes of Mr, Ronowicz... ( and me :P)