n = int(input()) S = input() T = [chr(26 - ord(s) + ord('a')) for s in S] print("".join(T))