일단 시작해보는 블로그

[알고리즘_입출력] 백준 10952 A+B -5 본문

CS/알고리즘 풀이

[알고리즘_입출력] 백준 10952 A+B -5

Selina Park 2019. 8. 6. 00:53
package input_output;

import java.util.Scanner;

public class backjoon_10952 {
    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){
                System.out.println(a+b);
            }else{
                break;
            }
        }
    }

}

 

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

 

10952번: A+B - 5

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

www.acmicpc.net

 

Comments