number = int(input("Enter Number to check"))
print("Number to be checked :", number)

if number%2==0 :
  print("This is an even number")

else:
  print("This is an odd number")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: