#33939: 超短python解法


s11131155@nhsh.tp.edu.tw (10830謝易佑)


a=input()
for i in a:
print(chr(ord(i)-7),end = '')
 
 
end=‘ ’可以讓輸出不換行
ord是將字元轉成ascii碼
chr是將ascii碼轉成字元