a=int(input("Ingrese un número: "))
b=int(input("Ingrese un número: "))

if a > b:
    print(f"{a} es mayor que {b}")
else:
    print(f"{a} es menor que {b}")

Embed on website

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