n = int(input()) s = input() f = lambda x: chr(abs(ord(x) - ord("a") - 25) + ord("a")) print("".join(map(f, s)))