prompt 창을 이용해 두 수를 입력받고, 두 수의 합을 템플릿 리터럴로 출력해보세요.예: "3 + 5 = 8"
const a = Number(prompt('첫 번째 숫자:')); const b = Number(prompt('두 번째 숫자:')); console.log(`${a} + ${b} = ${a + b}`);