반응형

 

 

 

<코드>

import java.util.Scanner;
public class Main {

	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		int A = sc.nextInt();
		int B = sc.nextInt();
		
		while(A != 0 && B!= 0) {
			System.out.println(A+B);
			A = sc.nextInt();
			B = sc.nextInt();
		}
		
	}
}

 

 

https://www.acmicpc.net/problem/10952

 

10952번: A+B - 5

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

반응형

+ Recent posts