Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92081 许诺 04四位数移位 Python3 Accepted 43 MS 3772 KB 127 2024-09-28 11:26:55

Tests(8/8):


Code:

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