Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
110886 苏星睿 04四位数移位 Python3 Accepted 39 MS 3760 KB 91 2025-02-23 17:00:13

Tests(8/8):


Code:

s = int(input()) a = s//1000 b = s//100%10 c = s//10%10 d = s%10 print(d,a,b,c,sep="")