print("Ingresa los lados para calcular el perimetro")
a=int(input("Ingresa el primer valor. "))
b=int(input("Ingresa el segundo valor. "))
c=int(input("Ingresa el tercer valor. "))
perimetro=a+b+c
print(f"El perimetro del triangulo es {perimetro}")
To embed this project on your website, copy the following code and paste it into your website's HTML: