스캐너를 와일문 안에 집어넣지 않는게 인상적이었음. 스캐너 클래스를 생성하는건 그냥 생성만 하는건가? 입력은 그럼 언제 받는건지 알아봐야겠음. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true){ int a = sc.nextInt(); int b = sc.nextInt(); if(a == 0 && b == 0) break; System.out.println(a+b); } } }