#include #include #include using namespace std; string clew1 = "pfnovu", ans1 = "orange"; string clew2 = "axqwuf", ans2 = "cipher"; string clew3 = "mbgrihcdejkolstyz", ans3 = "bqsuftlmdxynzvwjk"; string str; int main(){ cin >> str; for(int i = 0;i < str.size();i++){ bool done = false; for(int j = 0;j < clew1.size();j++){ if(clew1[j] == str[i]){ cout << ans1[j]; done = true; break; } } if(done)continue; for(int j = 0;j < clew2.size();j++){ if(clew2[j] == str[i]){ cout << ans2[j]; done = true; break; } } if(done)continue; for(int j = 0;j < clew3.size();j++){ if(clew3[j] == str[i]){ cout << ans3[j]; done = true; break; } } if(done)continue; } cout << endl; }