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()) c = 2 if a + c < b: c = c + 8 else: b = b + 10 if a + c < b: c = c + 8 else: b = b + 10 print(b, "to", c) User input: 4 15 [l1] User input: 7 17 [l2] User input: 12 5 [l3] User input: 16 8 [l4]