Cometin'

BOJ-5717 - Python

2020-10-12 at Algorithm category

0 0이 입력될 때 까지 입력되는 두 수들의 합을 출력하는 문제. while과 break를 이용하여 풀었다.

while 1:
    x, y = map(int, input().split())
    if x == 0 and y == 0:
        break
    print(x+y)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.