num1=int(input("enter the first number:"))
num2=int(input("enter the second number:"))
num3=int(input("enter the third number:"))
if(num1>num2):
if(num1>num3):
print(num1,"is greater than",num2,"and",num3)
else:
print(num3,"is greater than",num1,"and",num2)
elif(num2>num3):
print(num2,"is greater than",num1,"and",num3)
else:
print("the three numbers are equal")
To embed this project on your website, copy the following code and paste it into your website's HTML: