문제/백준_자바스크립트
6. 1001(A-B)
sm_hope
2022. 5. 16. 10:03
var fs = require('fs');
var input = fs.readFileSync('/dev/stdin').toString().split(' ');
var a = parseInt(input[0]);
var b = parseInt(input[1]);
console.log(a+b);