https://www.acmicpc.net/problem/10953
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class baekjoon_10953 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int TC = Integer.parseInt(br.readLine());
for(int t = 0; t < TC; t++){
String temp = br.readLine();
String AB[] = temp.split(",");
int A = Integer.parseInt(AB[0]);
int B = Integer.parseInt(AB[1]);
System.out.println(A+B);
}
}
}
반응형
'코딩테스트준비' 카테고리의 다른 글
백준 11022 자바 (0) | 2020.09.10 |
---|---|
백준 11021 자바 (0) | 2020.09.10 |
백준 10952 자바 (0) | 2020.09.10 |
백준 10951 자바 (0) | 2020.09.10 |
백준 10950 자바 (0) | 2020.09.10 |