✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche ce code ?
a=2
b=3
c=4
if b>a:
if c>b:
print(c-b-a)
else:
print(b-c-a)
elif c>a:
print(c-a-b)