https://www.acmicpc.net/problem/11022
#Solution
cases = int(input())
for i in range(cases):
a,b = map(int, input().split())
ans = a + b
print("Case #%s: %s + %s = %s"%(i+1, a, b, ans ))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#63 백준 파이썬 [10952] A + B - 5 (0) | 2019.07.03 |
---|---|
#62 백준 파이썬 [10951] A + B - 4 (0) | 2019.07.03 |
#60 백준 파이썬 [11021] A + B - 7 (0) | 2019.07.03 |
#59 백준 파이썬 [15552] 빠른 A+B (0) | 2019.07.03 |
#58 백준 파이썬 [10950] A + B - 3 (0) | 2019.07.03 |