Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94113 谭景年 字符转换 Python3 Accepted 32 MS 3732 KB 112 2024-10-19 19:21:27

Tests(1/1):


Code:

s=input().split() a=ord(s[0]) if a>=ord("A") and a<=ord("z"): print(chr(a+32)) else: print(a)