What I basically want to do would be: Set from the inputs a max value and a minimum value but I do not know how to do it.
if lado1>lado2 and lado3:
... print("A=lado1")
...
if lado2>lado1 and lado3:
... print("A=lado2")
...
if lado3>lado1 and lado2:
... print("A=lado3")
How can I from the above if create that variable? Thank you very much!