num = int(input( " Enter a number: ")) if(num % 2 == 0 ): print("Entered number is an even number") else: print("Emtered mumber is an odd number")