이렇게 풀었다.
const fs = require("fs");
const input = fs.readFileSync("/dev/stdin").toString();
const alphabets = "abcdefghijklmnopqrstuvwxyz".split("");
let ans = "";
alphabets.forEach((cha) => {
ans += input.indexOf(cha);
ans += " ";
});
console.log(ans);
그런데 다른 분들 답을 보니 ascii라든지...fromCharCode라든지... 이런 거 많이 쓰시고... 나처럼 무식하게 알파벳을 넣어서 한 사람이 별로 없더라...