A+B - 3 (10950)

Created:

Baekjoon No.10950
한 번에 출력하지 않아도 된다.

Bash

Bash
1
2
3
4
5
6
read t
#for i in $(seq $t); do
for ((i=0; i<t; i++)); do
	read a b
	echo $((a + b))
done

seq 명령어도 먹히지 않는다…

C

C
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int main(void) {
	int t, a, b;
	scanf("%d", &t);
	for (int i=0; i<t; i++) {
		scanf("%d %d", &a, &b);
		printf("%d\n", a+b);
	}
	return 0;
}

Node.js

JavaScript
1
2
3
4
5
let [t, ...list] = require("fs").readFileSync(0).toString().trim().split("\n");
for (let i of list) {
	let [a, b] = i.split(" ").map(Number);
	console.log(a + b);
}

PHP

PHP
1
2
3
4
5
6
7
<?php
	fscanf(STDIN, "%d", $n);
	for ($i=0; $i<$n; $i++) {
		fscanf(STDIN, "%d %d", $a, $b);
		echo $a + $b."\n";
	}
?>

Python3

Python
1
2
3
4
t = int(input())
for i in range(t):
    a, b = map(int, input().split())
    print(a+b)

Ruby

Ruby
1
2
3
4
5
t = gets.chomp.to_i
for i in 0...t
  a, b = gets.chomp.split(" ").map {|i| i.to_i}
  puts a+b
end