https://www.acmicpc.net/problem/11021
문제는 아까와 비슷한 문제이다. 다만 Case #x : 를 추가해서 출력해야한다.
import sys t = inp(input()) c = 1 for i in range(t): a, b = map(int, sys.stdin.readline().split()) print("Case #{0}:".format(c), a + b) c += 1