Run ID:88679

提交时间:2024-08-20 14:37:30

s = input() num = ord(s) if num >=97: num -= 32 else: num += 32 print(chr(num))