백준 10951 (python try, except)

yo·2020년 5월 11일
0
while True:
    try:
        a, b = map(int, input().split())
    except:
        break
    print(a + b)
profile
Never stop asking why

0개의 댓글