From 7eef0bfb323073e01a58e2aca9b377789b4c3b0d Mon Sep 17 00:00:00 2001 From: notalentprogrammer Date: Tue, 6 May 2025 21:58:00 +0900 Subject: [PATCH] 20250506 baekjoon --- Baekjoon/js/1001.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 Baekjoon/js/1001.js diff --git a/Baekjoon/js/1001.js b/Baekjoon/js/1001.js new file mode 100755 index 0000000..63b8430 --- /dev/null +++ b/Baekjoon/js/1001.js @@ -0,0 +1,7 @@ +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); \ No newline at end of file