코딩테스트/프로그래머스
softeer - A+B[python]
clamp
2023. 1. 16. 11:16
import sys
n = int(input())
for i in range(0, n):
a, b = map(int, sys.stdin.readline().split())
print("Case #{}: {}".format(i+1, a+b))