Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132650 潘允晨 04倒序输出五位数 Python3 Accepted 62 MS 3764 KB 112 2025-10-12 09:14:11

Tests(10/10):


Code:

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