
🔴 문제
??!
🟡 Sol
const fs = require('fs');
const path = process.platform === 'linux' ? '/dev/stdin' : 'Wiki\\input.txt';
const id = fs.readFileSync(path).toString().trim();
console.log(id + '??!')
🟢 풀이
⏰ 소요한 시간 : -
입력받은 문자열에 ??! 문자열을 더하기 연산하여 출력한다.
🔵 Ref