提交时间:2025-10-01 13:07:21

运行 ID: 353993

s=input() if s.isupper(): print(chr(ord(s)+32),end='') elif s.islower(): print(chr(ord(s)-32),end='')