λ μ μλ₯Ό A,Bλ₯Ό μ λ ₯ λ°κ³ , A+Bλ₯Ό μΆλ ₯νλ λ¬Έμ ν΄κ²° 1. κ°λ¨ν μ²λ¦¬ package step04_while; import java.util.Scanner; public class step04_01 { public static void main(String[] args) { // 10952λ². A+B-5 Scanner sc = new Scanner(System.in); while (true){ int A = sc.nextInt(); int B = sc.nextInt(); if(A==0 && B==0) { sc.close(); break; } System.out.println(A+B); } } } ν΄κ²° 2. μ±λ₯ ν₯μμ μν λ°©λ² - Scanner λμ BufferedReaderλ₯Ό μ¬μ©νλ€ (μκ° ..