Python/백준

[11022] A+B-8

류경혜 2022. 5. 16. 14:20

t = int(input())
for i in range(1, t+1):
    a, b = map(int, input().split())
    print(f'Case #{i}: {a} + {b} = {a+b}')
    print('Case #{}: {} + {} = {}'.format(i, a, b, a+b))