#35820: python答案


chiren0000@gmail.com (relxis)


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