티스토리 뷰
import sys
num = int(sys.stdin.readline())
for i in range(num):
a, b = map(int, sys.stdin.readline().split())
add = a + b
print(f"Case #{i+1}: {a} + {b} = {add}")
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 2442번 - 별찍기 5 (0) | 2020.12.30 |
---|---|
[Python] 백준 10818번 - 최소, 최대 (0) | 2020.12.30 |
[Python] 백준 11021번 - A+B - 7 (0) | 2020.12.30 |
[Python] 백준 10953번 - A+B-6 (0) | 2020.12.30 |
[Algorithm] 백준 10952 Python (0) | 2020.12.30 |