Run ID:105169
提交时间:2025-01-12 16:07:44
s=input() if 65<=ord(s)<=90: #大写 print(chr(ord(s)+32)) else: print(chr(ord(s) - 32))