Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90564 周楚航 04倒序输出五位数 Python3 Accepted 46 MS 3768 KB 114 2024-09-15 18:37:42

Tests(10/10):


Code:

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