본문 바로가기

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

[BEAKJOON][반복문][10952][Python] A+B - 5

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

while True:
	a, b = map(int, input().split())
    # 마지막 숫자는 0 0
	if a == b == 0:
		break
        
	print(a+b)

End

  - 

반응형