3 lines
96 B
Python
3 lines
96 B
Python
N = int(input())
|
|
for i in range(N):
|
|
print("Case #%s:"%(i+1), sum(map(int, input().split()))) |