Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92301 张泽一 字符转换 Python3 Accepted 38 MS 3736 KB 78 2024-09-28 20:18:11

Tests(1/1):


Code:

s=input() a=ord(s)+32 if 122>=a>=97: print(chr(a)) else: print(s)