https://www.acmicpc.net/problem/11022
이번 문제는 저번 문제와 유사하다. 출력 부분에서 a + b = c 를 출력해야하는 문제이다.
t= int(input()) for i in range(1, t + 1): a + b = map(int, input().split()) c = a + b print("Case #{0}: {1} + {2} =".format(i, a, b), c)