l = list(input()) l.reverse() s = '' for i in range(len(l)): s += chr(122 - ord(l[i])) print(s)