본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 11022번 A+B - 8

by 현장 2022. 1. 23.

-코드

for i in range(int(input())):
    a, b = map(int, input().split())
    print(f"Case #{i + 1}: {a} + {b} = {a + b}")