아까 문제와 달리 이거는 더이상 데이터가 없을 때 종료하게 해야한다.
Scanner 로 풀기위해선 hasNextInt을 사용하면 된다고 한다.
import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
while(sc.hasNextInt()){
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
}