본문 바로가기
알고리즘/백준

[Python/Java] 백준 10950번 - A+B - 3

by 소꿍 2020. 6. 9.

https://www.acmicpc.net/problem/10950

 

10950번: A+B - 3

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

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());
		}
	}
}

댓글