#include using namespace std; using uint = unsigned int; using ll = long long; #define CIN( LL , A ) LL A; cin >> A #define GETLINE( A ) string A; getline( cin , A ) #define GETLINE_SEPARATE( A , SEPARATOR ) string A; getline( cin , A , SEPARATOR ) #define FOR_LL( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) #define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) #define REPEAT( HOW_MANY_TIMES ) FOR_LL( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES ) #define RETURN( ANSWER ) cout << ( ANSWER ) << endl; return 0 #define DOUBLE( PRECISION , ANSWER ) cout << fixed << setprecision( PRECISION ) << ( ANSWER ) << endl; return 0 #define MIN( A , B ) A < B ? A : B; #define MAX( A , B ) A < B ? B : A; template inline T Distance( const T& a , const T& b ){ return a < b ? b - a : a - b; } int main(){ CIN( string , S ); ll size_S = S.size(); string sample_imput = "pfnovuaxqwufmbgrihcdejkolsty"; string sample_output = "orangecipherbqsuftlmdxynzvwj"; ll size_sample = sample_imput.size(); FOR_LL( i , 0 , size_S ){ string c = S.substr( i , 1 ); bool found = false; FOR_LL( j , 0 , size_sample ){ if( c == sample_imput.substr( j , 1 ) ){ cout << sample_output.substr( j , 1 ); j = size_sample; found = true; } } if( ! found ){ FOR_LL( k , 0 , size_sample ){ found = false; string d = sample_imput.substr( k , 1 ); FOR_LL( j , 0 , size_sample ){ if( d == sample_output.substr( j , 1 ) ){ j = size_sample; found = true; } } if( ! found ){ cout << d; k = size_sample; } } if( found ){ cout << c; } } } RETURN( "" ); }