https://www.acmicpc.net/problem/10951
1
2
3
4
5
6
7
8
9
|
import sys
while True:
try:
a, b = map(int, sys.stdin.readline().split(' '))
print(a+b)
except:
break
|
cs |
1 2 3 4 5 6 7 8 9 | const filePath = process.platform === 'linux' ? '/dev/stdin' : './예제.txt'; let input = require('fs').readFileSync(filePath).toString().trim().split('\n'); let answer = '' for (let i = 0; i < input.length; i++) { let arr = input[i].split(' ').map(Number); answer += `${arr[0]+arr[1]}\n`; } console.log(answer) | cs |
'알고리즘 공부 > 입출력' 카테고리의 다른 글
백준 10953번 (0) | 2021.09.28 |
---|---|
백준 10952번 (0) | 2021.09.28 |
백준 10950번 (0) | 2021.09.28 |
백준 2558번 (0) | 2021.09.28 |
백준 1000번 (0) | 2021.09.27 |