Memory Exceeded
正在同步测试数据,请稍后 [Hydro](https://hydro.ac)提供评测服务
代码
s = input()
lst = list(s)
for i in range(len(lst)):
if ord(lst[i]) - ord('a') < 23:
lst[i] = chr(ord(lst[i])+4)
else:
i = chr(ord(lst[i])-22)
for j in lst:
print(j,end = '')