Run ID:129389
提交时间:2025-08-25 09:29:51
ch = input() if 65 <= ord(ch) <= 90: y = chr(ord(ch)+32) print(y) else: y = chr(ord(ch) - 32) print(y)