#include using namespace std; int main() { string S; cin >> S; for(int i = 0; i < 26; i++) { char s = 'a' + i; if(s != S.at(i)) { cout << s << "to" << S.at(i) << endl; return 0; } } }