Problem:
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
첫째 줄에 테스트 케이스의 개수 T가 주어진다.
각 테스트 케이스는 한 줄로 이루어져 있으며, 각 줄에 A와 B가 주어진다. (0 < A, B < 10)
My Code:
import java.util.Scanner;
public class BaekJoon_10950 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int caseNum = scanner.nextInt();
for (int i = 0; i < caseNum; i++) {
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println(a+b);
}
scanner.close();
}
}
Input
5
1 1
2 3
3 4
9 8
5 2
Output
2
5
7
17
7