Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94114 徐盛熠 字符转换 Python3 Accepted 34 MS 3740 KB 95 2024-10-19 19:22:52

Tests(1/1):


Code:

c=input().split() a=c[0] a=ord(a) if ord('A')<=a and ord('Z')>=a : print(chr(a+32))