Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132218 江屹山 04四位数移位 Python3 Accepted 57 MS 3772 KB 93 2025-10-07 13:30:18

Tests(8/8):


Code:

x=int(input()) a=x//1000 b=x//100%10 c=x//10%10 d=x%10 print("{}{}{}{}".format(d,a,b,c))