mycode/Baekjoon/js/1001.js
notalentprogrammer 7eef0bfb32 20250506 baekjoon
2025-05-06 21:58: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);