#include int main(){ char str[26]; scanf("%s",str); for(int i = 0;i < 26;i ++){ if(str[i] - 'a' != i){ printf("%cto%c",str[i],i); return 0; } } }