백준 11022 파이썬 A+B - 8

304호 하숙생·2022년 7월 21일
0
post-thumbnail

t = int(input())
for i in range(1, t + 1):
    a, b = map(int, input().split())
    c = a + b
    print(f'Case #{i}: {a} + {b} = {c}')
profile
304호 하숙생의 코딩일기장

0개의 댓글