import sys input = sys.stdin.readline N=int(input()) S=input().strip() T=[] for s in S: x=ord(s)-97 y=(25-x)+97 T.append(chr(y)) print("".join(T))