def main(): n = int(input()) return "".join([chr(25-ord(s)+2*ord("a")) for s in input()]) ans = main() print(ans)