Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105166 丁俊杰 07大小写转换 Python3 Accepted 37 MS 3732 KB 83 2025-01-12 15:57:19

Tests(10/10):


Code:

s=input() if s.islower(): print(s.upper()) else: print(s.lower())