Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
79760 张智博 字符倒序 Python3 Accepted 32 MS 3724 KB 72 2024-07-09 23:12:11

Tests(1/1):


Code:

input_str = input() reversed_str = input_str[::-1] print(reversed_str)