[백준] 10950번 문제, A+B - 3
문제
여기를 눌러 문제를 확인하세요.
코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int[] ab = new int[2];
int size = sc.nextInt();
for(int i = 0; i < size; i++) {
int a = sc.nextInt();
int b = sc.nextInt();
ab[0] = a;
ab[1] = b;
System.out.println(a + b);
}
}
}