반응형
package algo;
import java.util.Scanner;
public class BJ10950 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i=0; i<n;i++) {
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a+b);
}
}
}
반응형
'백준알고리즘' 카테고리의 다른 글
백준 15552번 빠른 A+B (0) | 2020.03.02 |
---|---|
백준 8393번 합 (0) | 2020.03.01 |
백준 10817번 세 수 (0) | 2020.03.01 |
백준 2588번 곱셈 (0) | 2020.03.01 |
백준 1008번 (0) | 2020.01.22 |
댓글