문제 번호
알고리즘 분류
수학, 구현, 사칙연산
문제 풀이
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let input = [];
let number = '';
let answer = '';
let tc = 0;
rl.on('line', (line) => {
input = line;
number = input.split(' ');
let a = number[0];
let b = number[1];
if (a == 0 && b == 0)
rl.close();
else {
console.log(Number(a) + Number(b));
}
})
rl.on('close', () => {
})
특이사항
'Algorithm > BaeKJoon' 카테고리의 다른 글
[JS][백준]10818_최소, 최대 (0) | 2021.08.02 |
---|---|
[JS][백준]1110_더하기 사이클 (0) | 2021.08.02 |
[JS][백준]10871_X보다 작은 수 (0) | 2021.07.30 |
[JS][백준]2439_별 찍기 - 2 (0) | 2021.07.30 |
[JS][백준]2438_별 찍기 - 1 (0) | 2021.07.30 |