https://www.acmicpc.net/problem/11021
풀이
import sys
num = int(input())
ls = 0
for i in range(num):
ls += 1
a, b = map(int, sys.stdin.readline().split())
print(f"Case #{ls}:", a+b)
'Python > Baekjoon' 카테고리의 다른 글
백준 2438번 : 별 찍기 - 1 (0) | 2022.10.06 |
---|---|
백준 11022번 : A+B - 8 (0) | 2022.10.06 |
백준 15552번 : 빠른 A+B (0) | 2022.10.06 |
백준 25304번 : 영수증 (0) | 2022.10.06 |
백준 8393번 : 합 (0) | 2022.10.06 |