print("inserire il primo numero")
primo=float (input())
print ("inserire il secondo numero")
secondo=float (input())
if primo<secondo:
    print(secondo,"é maggiore di", primo)
else:
    if primo>secondo:
        print(secondo,"é minore di", primo )
    else:
        print(primo,"é uguale a",secondo)

Embed on website

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