Run ID:94109

提交时间:2024-10-19 19:15:32

a = input() b = ord(a) if b >= 97 and b<= 97+26: print(chr(b-32)) else: print(chr(b+32))