Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92785 徐梓涵 字符转换 Python3 Accepted 35 MS 3716 KB 69 2024-10-06 14:34:04

Tests(1/1):


Code:

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