가오리의 코딩일기
[10952] A+B-5 본문
while True:
a, b = map(int, input().split())
if((a == 0) and (b == 0)):
break
else:
print(a+b)
'Python > 백준' 카테고리의 다른 글
[11021] A+B-7 (0) | 2022.05.16 |
---|---|
[10953] A+B-6 (0) | 2022.05.16 |
[10951] A+B-4 (0) | 2022.05.16 |
[10950] A+B-3 (0) | 2022.05.16 |
[2558] A+B-2 (0) | 2022.05.16 |