지나가던 개발자
[Python] 백준 11022번(A+B - 8) 문제 풀이 본문
test_case = []
for i in range(int(input())):
test_case.append(list(map(int, input().split())))
for i in range(1, len(test_case)+1):
print("Case #" + str(i) + ":", test_case[i-1][0], "+", test_case[i-1][1], "=", sum(test_case[i-1]))
'PS > Python' 카테고리의 다른 글
[Python] 백준 1731번(추론) 문제 풀이 (0) | 2022.03.27 |
---|---|
[Python] 백준 4101번(크냐?) 문제 풀이 (0) | 2022.03.27 |
[Python] 백준 1264번(모음의 개수) 문제 풀이 (0) | 2022.03.18 |
[Python] 백준 11656번(접미사 배열) 문제 풀이 (0) | 2022.03.13 |
[Python] 백준 2789번(유학 금지) 문제 풀이 (0) | 2022.03.12 |
Comments