지나가던 개발자
[Python] 백준 11021번(A+B - 7) 문제 풀이 본문
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) + ": " + str(sum(test_case[i-1])))
'PS > Python' 카테고리의 다른 글
[Python] 백준 1712번(손익분기점) 문제 풀이 (0) | 2022.02.14 |
---|---|
[Python] 백준 4673번(셀프 넘버) 문제 풀이 (0) | 2022.02.13 |
[Python] 백준 21598번(SciComLove) 문제 풀이 (0) | 2022.02.09 |
[Python] 백준 23795번(사장님 도박은 재미로 하셔야 합니다) 문제 풀이 (0) | 2022.02.09 |
[Python] 백준 15680번(연세대학교) 문제 풀이 (0) | 2022.02.09 |
Comments