cool hamsters never sleep

백준 10952. A+B - 5 본문

Python Algorithm

백준 10952. A+B - 5

슈슈 susu 2022. 7. 16. 17:59
while True :
    A, B = map(int, input().split())
    if A+B == 0 :
        break
    print(A+B)

'Python Algorithm' 카테고리의 다른 글

백준 1065. 한수  (0) 2022.07.16
백준 15596. 정수 N개의 합  (0) 2022.07.16
백준 10951. A+B - 4  (0) 2022.07.16
백준 15552. 빠른 A+B  (0) 2022.07.16
백준 10871. X보다 작은 수  (0) 2022.07.16
Comments