본문 바로가기

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

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

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

 

 

#Solution

cases = int(input())

for i in range(cases):
    a,b = map(int, input().split())
    ans = a + b
    print("Case #%s: %s"%(i+1, ans ))