Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92472 丁楷桐 04四位数移位 Python3 Accepted 40 MS 3768 KB 102 2024-10-05 10:59:50

Tests(8/8):


Code:

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