str1=input()
for i in str1:
if 'a'<=i<='z':
print(chr(ord('z')-(ord(i)-ord('a'))),end='')
elif 'A'<=i<='Z':
print(chr(ord('Z')-(ord(i)-ord('A'))),end='')
else:
print(i,end='')

posted on 2020-03-24 19:59  叫你一声你敢应吗  阅读(101)  评论(0编辑  收藏  举报