https://www.acmicpc.net/problem/10950
Python
times = int(input())
result = []
while times:
times -= 1
a, b = map(int, input().split())
result.append(a+b)
for i in result:
print(i)
Java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
for(int i = 0; i < n; i++) {
System.out.println(scan.nextInt() + scan.nextInt());
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 15552번 - 빠른 A+B (0) | 2020.06.09 |
---|---|
[Python] 백준 8393번 - 합 (0) | 2020.06.09 |
[Python/Java] 백준 2739번 - 구구단 (0) | 2020.06.09 |
[Python/Java] 백준 2884번 - 알람 시계 (0) | 2020.06.08 |
[Python/Java] 백준 14681번 - 사분면 고르기 (0) | 2020.06.08 |
댓글