N = int(input()) S = input() for s in S: i = ord(s) - 97 c = 26 - i + 97 - 1 print(chr(c), end="") print()