본문 바로가기

[SW][BEAKJOON]/[SW][BEAKJOON][반복문]

[BEAKJOON][반복문][10951][Python] A+B - 4

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

#조건이 완료될 때 까지 반복
while True:
    try:
        A, B = map(int, input().split())
        print(A+B)
    except:
        break

End

  - 

반응형