티스토리 뷰
📖 question
https://www.acmicpc.net/problem/9295
✍️ answer
t = int(input())
for i in range(t):
a, b = map(int, input().split())
print("Case {}:".format(i+1), a+b)
format 말고 f-string을 사용하는 방법도 있음
'Python > BAEKJOON' 카테고리의 다른 글
2921 도미노 (0) | 2022.06.16 |
---|---|
10569 다면체 (0) | 2022.06.15 |
10178 할로윈의 사탕 (0) | 2022.06.12 |
5522 카드 게임 (0) | 2022.06.11 |
2010 플러그 (0) | 2022.06.10 |
댓글