mycode/Baekjoon/js/1000.js
notalentprogrammer dd81517a49 20250505 baekjoon
2025-05-05 21:52:00 +09:00

7 lines
160 B
JavaScript
Executable File

const fs = require("fs");
const n = fs.readFileSync("/dev/stdin").toString().split(" ");
const a = parseInt(n[0]);
const b = parseInt(n[1]);
console.log(a+b);