이 문제도 동일하게 두 수를 입력받아 출력하지만 여기서 종료시점은 마지막에 0 두개가 들어온다는 것이다.
해당 조건에 대하여 종료시점만 잡아주면 된다.
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
StringBuilder sb = new StringBuilder();
String line;
while(true) {
line = br.readLine();
st = new StringTokenizer(line, " ");
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
if(A == 0 && B == 0) {
break;
}
sb.append(A + B).append("\n");
}
System.out.println(sb);
}
}