반응형
1) 내가 작성한 코드
i = 1
while i > 0:
A, B = map(int, input().split())
if A == 0 and B == 0:
exit()
else:
print(A + B)
- while True ← 이 구문이 기억이 나지 않아서 이렇게 작성했다.
2) 구글링 코드
while True:
a, b = map(int, input().split())
if a == 0 and b == 0:
break
print(a+b)
반응형
'Algorithm > baekjoon' 카테고리의 다른 글
[파이썬/python] break, continue, return, exit (1) | 2023.03.03 |
---|---|
[백준 10951 파이썬/python] A+B-4 (0) | 2023.03.03 |
[백준 2439 파이썬/python] 별 찍기 - 2 (0) | 2023.03.02 |
[백준 2438 파이썬/python] 별 찍기 - 1 (0) | 2023.02.28 |
[백준 11022 파이썬/python] A+B-8 (0) | 2023.02.28 |