N = int(input()) S = input() T = [] for i, s in enumerate(S): c = ord(s)-ord('a') c = ord('z')-c T.append(chr(c)) print("".join(T))