l = list(input()) for i in range(len(l)): l[i] = chr(122 - ord(l[i])) print("".join(l))