[백준알고리즘] 백준 10952번 A + B - 5 자바(JAVA)
소스 코드 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc =new Scanner(System.in); int A, B; while(true) { A = sc.nextInt(); B = sc.nextInt(); if(A == 0 && B ==0) { break; } System.out.println(A+B); } sc.close(); } } 출력 결과