#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string s;
    cin >> s;
    string ans;
    for(int i = 0; i < (int)s.size(); i++){
        if(s[i] != 'a' + i){
            ans = 'a' + i;
            ans += "to";
            ans += s[i];
        }
    }
    cout << ans << endl;
}