提交时间:2025-09-19 18:58:17
运行 ID: 349951
s=input() if s.isupper(): print(chr(ord(s)+32),end='') elif s.islower(): print(chr(ord(s)-32),end='')