while True: try: s1=input() s2=input() list1=[] #加密 for i in s1: if i.isalpha() and i not in ['z','Z'] : if i.islower(): list1.append(chr(ord(i.upper())+1)) else: list1.app...