본문 바로가기
카테고리 없음

[백준] 2420 사파리월드 Node.js

by Yeony99 2022. 8. 30.
728x90
const fs = require('fs');

const input = fs.readFileSync("/dev/stdin").toString().trim().split(" ");

console.log(Math.abs(input[0] - input[1]))

 

728x90

댓글