In the blank spaces below, write the output produced by the…
Questions
In the blаnk spаces belоw, write the оutput prоduced by the print in the following code when the user enters the provided vаlues. a = int(input()) b = int(input()) if a > b: a = a - 3 b = b + 1 else: b = b - 4 a = a - 1 if a < b: a = a + 10 elif a > b: b = b + 20 print(a, "or", b) User input: 5 2 [l1] User input: 8 3 [l2] User input: 6 2 [l3] User input: 4 7 [l4]