https://www.acmicpc.net/problem/11022
import sys
for i in range(1, int(input())+1):
a, b = map(int, sys.stdin.readline().split())
print(f"Case #{i}: {a} + {b} = {a + b}")
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 2439번 - 별 찍기 - 2 (0) | 2020.06.09 |
---|---|
[Python] 백준 2438번 - 별 찍기 - 1 (0) | 2020.06.09 |
[Python] 백준 11021번 - A+B - 7 (0) | 2020.06.09 |
[Python] 백준 2742번 - 기찍 N (0) | 2020.06.09 |
[Python] 백준 2741번 - N 찍기 (0) | 2020.06.09 |
댓글