본문 바로가기
백준문제/브론즈 4

백준) 5717번 - python

by kiseno 2024. 4. 2.
728x90
반응형
SMALL
while True:
    m,f = map(int,input().split())
    if m == 0 and f == 0: break
    else : print(m + f)
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 9316번 - python  (0) 2024.04.04
백준) 6749번 - python  (0) 2024.04.03
백준) 5596번 - python  (0) 2024.04.02
백준) 9316번 - python  (0) 2024.04.01
백준) 10987번 - python  (0) 2024.03.31