print("Ingrese 4 valores")
a = float(input("Ingresa el primer valor (a): "))
b = float(input("Ingresa el segundo valor (b): "))
c = float(input("Ingresa el tercer valor (c): "))
d = float(input("Ingresa el cuarto valor (d): "))
mayor = max(a, b, c, d)
print(f"El valor mayor entre {a}, {b}, {c} y {d} es: {mayor}")
To embed this project on your website, copy the following code and paste it into your website's HTML: