N=int(input()) S=input() T=[] for i in S: x=ord(i)-97 y=(25-x)+97 T.append(chr(y)) print("".join(T))