본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#195 백준 파이썬 [11021] A+B - 7

https://www.acmicpc.net/problem/11021

 

#Solution

T = int(input())
num = 1

for _ in range(T):
    A, B = map(int, input().split())
    print("Case #%s: %s" % (num, A+B))
    num += 1