반응형
https://www.acmicpc.net/problem/10952
while True:
x, y = map(int, input().split())
if (x or y) == 0:
break
else:
print(x+y)
반응형
'BOJ > Python' 카테고리의 다른 글
백준 11021번 A+B - 7 파이썬 (0) | 2021.08.18 |
---|---|
백준 10953번 A+B - 6 파이썬 (0) | 2021.08.18 |
백준 10951번 A+B - 4 파이썬 (0) | 2021.08.17 |
백준 10950번 A+B - 3 파이썬 (0) | 2021.08.17 |
백준 2558번 A+B - 2 파이썬 (0) | 2021.08.17 |