_ = input() s = input() az = list(map(chr,range(97,123))) za = az[::-1] a = '' for i in s: a += za[az.index(i)] print(a)