Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90281 周楚航 04四位数移位 Python3 Accepted 40 MS 3756 KB 94 2024-09-10 20:42:32

Tests(8/8):


Code:

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