문제 풀이

[python] 백준 5717번

_tera_ 2021. 6. 8. 00:04

while(True):
    m, f = map(int, input().split())
    if m==0 and f==0:
        break
    print(m+f)
저작자표시 (새창열림)