백준10952: A+B - 5
문제
https://www.acmicpc.net/problem/10952
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
}
}
}
댓글남기기