IT_Baekjoon 단계별로 풀어보기/While문
10952_Python // A+B -5
Pangaea_T
2020. 1. 6. 17:50
Python
import sys
TF = True
while(TF) :
a,b = map(int,sys.stdin.readline().split())
if(a==0 and b==0) :
TF = False
else :
print(a+b)
===