Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90582 余睿毅 04倒序输出五位数 Python3 Wrong Answer 34 MS 3744 KB 94 2024-09-15 20:02:03

Tests(0/10):


Code:

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


Run Info:

------Input------
15350
------Answer-----
05351
------Your output-----
05315