str = input()emptystr = ""for i in range(0, len(str)): char = chr(ord(str[int(i)]) - 7) emptystr = emptystr + charprint(emptystr)