출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

 

이것도 저번과 비슷한 문제였다. for문으로 간단하게 풀면된다:

import sys

T = int(sys.stdin.readline())

for i in range(T):
    A, B = map(int, sys.stdin.readline().split())
    print("Case #" + str(i+1) + ": " + str(A) + " + " + str(B) + " = " + str(A+B))