Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132213 江屹山 04倒序输出五位数 Python3 Accepted 61 MS 3764 KB 112 2025-10-07 13:22:07

Tests(10/10):


Code:

x=int(input()) a=x//10000 b=x//1000%10 c=x//100%10 d=x//10%10 e=x%10 print('{}{}{}{}{}'.format(e,d,c,b,a))