def main(): _ = int(input()) s = input() ans = "" for c in s: ans += chr(ord("z") - ord(c) + ord("a")) print(ans) if __name__ == "__main__": main()