
const input = require("fs")
.readFileSync("./input.txt")
.toString()
.trim()
const result = [];
for (let i = 97; i <= 122; i++) {
result.push(input.indexOf(String.fromCharCode(i)))
}
console.log(result.join(' '))
input값을 아스키코드로 변환한 후, indexOf를 통하여 존재하지 않으면 -1, 존재한다면 index 번호 출력