[python] 백준 10952 A + B - 5

rse·2022년 11월 26일
0

알고리즘

목록 보기
12/44
post-custom-banner

https://www.acmicpc.net/problem/10952

이번 문제는 0 0을 입력받으면 종료시키는 코드를 만들면 된다.

while True:
	a , b = map(int, input().split())
    if a == 0 and b == 0:
    	break
    print(a + b)

profile
기록을 합시다

0개의 댓글