반응형
백준 BAEKJOON 11022번 A+B - 8 [PYTHON/파이썬]
<문제 출처>
https://www.acmicpc.net/problem/11022
<풀이>
백준 11021번 문제에서 조금만 더 추가하면 구현할 수 있다.
※ 참고 : https://calkolab.tistory.com/entry/BAEKJOON-PYTHON-11021
<코드>
T = int(input())
for t in range(1, T+1) : # Case 번호 출력을 위해 1부터 시작했다.
A, B = map(int, input().split())
print("Case #{}: {} + {} = {}".format(t, A, B, A+B))
반응형
'ALGORITHM > PYTHON' 카테고리의 다른 글
백준 BAEKJOON 2439번 별 찍기 - 2 [PYTHON/파이썬] (0) | 2022.09.03 |
---|---|
백준 BAEKJOON 2438번 별 찍기 - 1 [PYTHON/파이썬] (0) | 2022.09.03 |
백준 BAEKJOON 11021번 A+B - 7 [PYTHON/파이썬] (0) | 2022.09.03 |
백준 BAEKJOON 15552번 빠른 A+B [PYTHON/파이썬] (0) | 2022.09.03 |
백준 BAEKJOON 25304번 영수증 [PYTHON/파이썬] (0) | 2022.09.03 |