Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
()
로 값을 받아옴int A,B;
for (int i = 0; i < T; i++) {
B = sc.nextInt();
A = sc.nextInt();
System.out.println(A+B);
}
for문을 사용하여 반복해서 출력
테스트 케이스의 개수만큼 반복해서 출력해야하므로 이때 A와 B의 값을 sc.nextInt()
로 받아옴
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); int B, A; for (int i = 0; i < T; i++) { B = sc.nextInt(); A = sc.nextInt(); System.out.println(A+B); } } }