#include int main() { int N; std::string S; std::cin >> N >> S; for (const auto e : S) std::cout << char('a' + ('z' - e)); std::cout << std::endl; }