N=map(int,input().split()) S=input().strip() a=ord("a") z=ord("z") print("".join([chr(z-ord(s)+a) for s in S]))