Quelle partie du script ci-contre est inutile ? Simplifier-le.
a = int(input("a ?"))
b = int(input("b ?"))
c = int(input("c ?"))
if a <= b:
if a >= c:
print(c)
else:
print(a)
elif a >= c:
if b >= c:
print(c)
else:
print(b)
else:
if b <= c:
print(b)
else:
print(c)