import java.util.Scanner; public class MainA { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int a = scanner.nextInt(); int b = scanner.nextInt(); System.out.println(a+b); } scanner.close(); } }
입력값이 들어올때까지 while문 내부가 실행되지 않다가
입력값이 들어와 hasNextInt()가 true를 리턴한후에 while문이 실행됨