N = int(input()) S = input() T = '' for s in S[::-1]: T += chr(25-(ord(s)-97)+97) print(T[::-1])