//"A B"の形で入力された2つの整数を"A+B"して表示するスクリプト function calc(a, b){ let result = a + b; return result; } let a = parseInt(process.argv[2]); let b = parseInt(process.argv[3]); console.log(calc(a,b));