import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
for(int i=0; i<a; i++) {
int b = sc.nextInt();
int c = sc.nextInt();
System.out.println(b+c);
}
}
}
728x90
반응형
'매일코테' 카테고리의 다른 글
백준 3단계 no.4 (0) | 2022.07.20 |
---|---|
백준 3단계 no.3 (0) | 2022.07.20 |
백준 3단계 no.1 (0) | 2022.07.20 |
백준 2단계 no.7 (0) | 2022.07.19 |
백준 2단계 no.6 (0) | 2022.07.19 |