[SW][BEAKJOON]/[SW][BEAKJOON][반복문]
[BEAKJOON][반복문][10952][Python] A+B - 5
Gooing
2022. 3. 30. 23:55
반응형
PROBLEM
- Link
Approach to the problem
-
Code
while True:
a, b = map(int, input().split())
# 마지막 숫자는 0 0
if a == b == 0:
break
print(a+b)
End
-
반응형