#include using namespace std; int main(){ int n;cin>>n; string s;cin>>s; for(int i = 0; n > i; i++){ cout << (char)('z'-s[i]+'a'); } cout << endl; }