"""字符串反码""" s = input() for c in s: if 'a' <= c <= 'z': print(chr(ord('z')-(ord(c)-ord('a'))),end='') elif 'A' <= c <= 'Z': print(chr(ord('Z')-(ord(c)-ord('A'))),end='') else: print(c,end='')
学号:2020310143012
昵称:苒若