print("hello world")
#declarar variables
num1=int(input("\nintroduce el numero"))
num2=int(input("\nintroduce el numero"))
num3=int(input("\nintroduce el numero"))
if num1>num2 and num1>num3:
print("\nel mayor es",num1)
elif num2>num1 and num2>num3:
print("\nel mayor es",num2)
else:
print("\nel mayor es",num3)
if num1<num2 and num1<num3:
print("\nel menor es",num1)
elif num2<num1 and num2<num3:
print("\nel menor es",num2)
else:
print("\nel menor es",num3)
To embed this project on your website, copy the following code and paste it into your website's HTML: