N = int(input()) S = input() ans = "" for s in S: x = ord(s) - 97 ans += chr(122 - x) print(ans)