n = int(input()) s = input() ans = "" for i in range(n): ans += chr(97 + 123 - ord(s[i]) - 1) print(ans)