Run ID:94144

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

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