import sys
t = int(sys.stdin.readline())
list = list()
for i in range(0, t):
a, b = map(int, sys.stdin.readline().split())
list.append(a+b)
for j in range(0, t):
print('Case #{}: {}'.format(j+1, list[j]))
'Coding Test > 백준_Python' 카테고리의 다른 글
[백준/python] 2438번 - 별 찍기 - 1 (0) | 2020.06.23 |
---|---|
[백준/python] 11022번 - A+B-8 (0) | 2020.06.23 |
[백준/python] 2742번 - 기찍 N (0) | 2020.06.23 |
[백준/python] 2741번 - N 찍기 (0) | 2020.06.23 |
[백준/python] 15552번 - 빠른 A+B (0) | 2020.06.23 |