사칙연산 문제두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. 입력두 자연수 A와 B가 주어진다. (1 ≤ A, B ≤ 10,000)출력첫째 줄에 A+B, 둘째 줄에 A-B, 셋째 줄에 A*B, 넷째 줄에 A/B, 다섯째 줄에 A%B를 출력한다.예제 입력 7 3예제 출력 1042121예제 const input=require('fs').readFileSync('dev/stdin').toString().trim().split(' ');const A=parseInt(input[0]);const B=parseInt(input[1]);console.log(A+B);console.log(A-B);console.log(A*B);conso..