Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90583 余睿毅 04倒序输出五位数 Python3 Accepted 39 MS 3788 KB 116 2024-09-15 20:05:11

Tests(10/10):


Code:

a=input() b=int(a) c=(b%10) d=(b//10%10) e=(b//100%10) f=(b//1000%10) g=(b//10000%10) print(c,d,e,f,g,sep="")