20250506 baekjoon

This commit is contained in:
notalentprogrammer 2025-05-06 21:58:00 +09:00
parent dd81517a49
commit 7eef0bfb32

7
Baekjoon/js/1001.js Executable file
View File

@ -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);