fun main() { val s = readLine()!! for(i in 0 until 26){ if('a'+i != s[i]){ println("${'a'+i}to${s[i]}") } } }