// const input = require("fs").readFileSync("/dev/stdin").toString().split("\n");
const input = "1\n2".toString().split("\n");
function aPlusB(input) {
let a = Number(input[0]);
let b = Number(input[1]);
console.log(a + b);
}
aPlusB(input);
'BAEKJOON > JavaScript' 카테고리의 다른 글
[BAEKJOON] 상수 (2908번) (0) | 2022.03.28 |
---|---|
[BAEKJOON] 나머지 (3052번) (0) | 2022.03.21 |
[BAEKJOON] 더하기 사이클 (1110번) (0) | 2022.03.19 |
[BAEKJOON] 단어의 개수 (1152번) (0) | 2022.03.18 |
[BAEKJOON] 검증수 (2475번) (0) | 2022.03.18 |