Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91024 乔仲熠 04倒序输出五位数 Python3 Accepted 38 MS 3760 KB 118 2024-09-21 10:15:54

Tests(10/10):


Code:

e=input().split() a=int(e[0]) b=a%10 c=a//10%10 d=a//100%10 i=a//1000%10 f=a//10000 print(b,c,d,i,f,sep="")