Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92787 余泽越 字符转换 Python3 Accepted 34 MS 3728 KB 71 2024-10-06 14:34:35

Tests(1/1):


Code:

x = ord(input()) if x < 91: print(chr(x+32)) else: print(x)