number = int(input("enter a number:")) if number % 2 == 0 : print("this is an even number ") else: print("this is an odd number ")