Please explain why this code is executed.
if a> c:
If you enter the numbers 9, 5, 15? And this condition is also satisfied:
if b> c:
That is the answer I get is
9
five
15
9 15 5
5 15 9
How it enters the second if if a <c, as well as it enters the third if if b <c
a = input () b = input () c = input () if a > b: if a > c: print (a, c, b) else: print (c, a, b) if b > c: print (b, c, a) else: print (c, b, a)}