본문 바로가기

코딩테스트/BOJ

[백준/파이썬] 11021번: A+B - 7 (Python)

문제

백준 11021번

풀이

num = int(input())
for i in range(0,num):
    a, b = map(int,input().split())
    print("Case #%d: %d + %d = %d" %(i+1, a, b, a+b))

 

출처

www.acmicpc.net/problem/11022