반응형

문제

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

 

 

 

결과

 

 

 

 

 

문제 풀이

더보기
while 1:
    a, b = map(int, input().split())

    if a == 0 and b ==0:
        break;

    print(a+b)

 

+ Recent posts