[백준] #10952 A + B - 5 python
2023. 3. 10. 06:00
https://www.acmicpc.net/problem/10952
📕 설명 📕
아래와 같이 while 문을 사용하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
while 1:
a,b = map(int,input().split())
if a == 0 and b == 0:
break
print(a+b)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10810 공 넣기 python (0) | 2023.03.12 |
---|---|
[백준] 10951 A + B - 4 python (0) | 2023.03.11 |
[백준] #25314 코딩은 체육과목 입니다 python (0) | 2023.03.09 |
[백준] #11382 꼬마 정민 python (0) | 2023.03.08 |
[백준] #9094 수학적 호기심 python (0) | 2023.03.07 |