Run ID:94113
提交时间:2024-10-19 19:21:27
s=input().split() a=ord(s[0]) if a>=ord("A") and a<=ord("z"): print(chr(a+32)) else: print(a)