10998번

문제 풀이
const fs = require("fs");
const input = fs.readFileSync("/dev/stdin").toString().split(" ");
let a = input[0]
let b = input[1]
console.log(input[0] * input[1]);
간단하게 풀이 , 자바스크립트에서 trim() 으로 쓰는 법도 있지만
주로 jQuary로 쓰이고 , 변수를 지정해서 풀이하는 것이 깔끔해서 수정했다.