Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90135 谭景年 04四位数移位 Python3 Accepted 37 MS 3768 KB 118 2024-09-07 20:46:55

Tests(8/8):


Code:

s=input().split() a=int(s[0]) k=a//1000 l=a%10 m=a//10%10 n=a//100%10 print(str(l) + str(k) + str(n) + str(m))