In the blank spaces below, write the output produced by the…

In the blank spaces below, write the output produced by the print in the following code when the user enters the provided values. a = int(input()) b = int(input()) if a < b: a = a + 2 b = b - 3 elif a == b: a = a * 2 b = b + 5 else: a = a - 3 if a == b: b = b + 10 print(a, "and", b) User Input Output 2 5 5 5 6 3 4 4 3 8 9 5