def f(c): return chr(ord("z") - ord(c) + ord("a")) N = int(input()) S = list(input()) S = list(map(f, S)) print(*S, sep="")