#35820: python答案


chiren0000@gmail.com (relxis)

學校 : 不指定學校
編號 : 236030
來源 : [219.68.21.45]
最後登入時間 :
2025-06-01 20:59:08

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