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