Run ID:129646

提交时间:2025-08-31 17:39:36

ch = input() if 65 <= ord(ch) <= 90: y = chr(ord(ch)+32) else: y = chr(ord(ch) - 32) print(y)