두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
각 테스트 케이스마다 A+B를 출력한다.
5
1 1
2 3
3 4
9 8
5 2
2
5
7
17
7
Scanner
이용하여 숫자 입력 받기for
문 사용하여 반복 출력for
문 안에서 a
와 b
입력받기import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int t = scanner.nextInt();
int a, b;
for(int i=0; i<t; i++) {
a = scanner.nextInt();
b = scanner.nextInt();
System.out.println(a+b);
}
scanner.close();
}
}