Developer. Designer

프로그래머스 기초트레이닝 Day1-5

특수문자 출력하기😃

다음과 같이 출력하도록 코드를 작성해 주세요.

출력 예시
!@#$%^&*('”<>?:;

const readline = require("readline");
const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
});

rl.on("close", function () {
  console.log("!@#$%^&*(\\'\"<>?:;");
});