두 수를 변수에 넣고, 나머지 연산(%) 결과를 템플릿 리터럴로 출력해보세요.예: "7 % 3 = 1"
const a = 7; const b = 3; console.log(`${a} % ${b} = ${a % b}`);