import java.util.Scanner;
public class Main {
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);
}
}
}
:)
'코딩 > coding test' 카테고리의 다른 글
[Python] 자료구조 - 배열과 리스트, 숫자의 합 구하기 (0) | 2024.04.10 |
---|---|
[JAVA] 백준 15552번: 빠른 A+B (0) | 2022.05.22 |
[JAVA] 백준 8393번: 합 (0) | 2022.05.22 |
[JAVA] 백준 2739번: 구구단 (0) | 2022.05.22 |
[JAVA] 백준 2480번 : 주사위 세개 (0) | 2022.05.22 |