[SW][BEAKJOON]/[SW][BEAKJOON][반복문]
[BEAKJOON][반복문][10951][Python] A+B - 4
Gooing
2022. 3. 30. 23:55
반응형
PROBLEM
- Link
Approach to the problem
-
Code
#조건이 완료될 때 까지 반복
while True:
try:
A, B = map(int, input().split())
print(A+B)
except:
break
End
-
반응형