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): "))

minimo=min(a, b, c, d)

print(f"El valor minimo entre {a}, {b}, {c} y {d} es {minimo}")

Embed on website

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