#include using namespace std; using ll = long long; #define rep(i,m,n) for(int i=m; i> N >> S; map conv; rep(i, 0, 26){ char od = 'a' + i; char nw = 'z' - i; conv[od] = nw; } for(char &s : S) cout << conv[s]; cout << endl; return 0; }