a=45
b=30
if b>a:
    print("b is greater than a")
elif a==b:
    print("a and b are equal")
else:
    print ("a is greater than b")

Embed on website

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