[백준] 11022번 A+B - 8 _ 문제 풀이



1. 문제

https://www.acmicpc.net/problem/11022

2. 풀이

for i in range(int(input())):
    a,b = map(int, input().split())
    print('Case #%d: %d + %d = %d' % (i+1, a, b, a+b))