def even_odd(num):
    if num % 2== 0:
        return True
    else:
        return False

num = int(input("Enter the number: "))

if even_odd(num):
    print("Even")
else:
    print("Odd")
    

Embed on website

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