[백준 1001번 node.js] A-B

Jessie H·2022년 6월 10일
0

알고리즘 공부

목록 보기
4/20

백준 1001번 A-B

풀이

<script>
const input = require('fs').readFileSync('/dev/stdin').toString().trim().split(' ');
const A = Number(input[0]); 
const B = Number(input[1]);
console.log(A-B);
</script>
profile
코딩 공부 기록장

0개의 댓글