Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90089 徐梓涵 04四位数移位 Python3 Accepted 38 MS 3772 KB 101 2024-09-07 20:01:39

Tests(8/8):


Code:

s=int(input()) a=s//10%10 b=s//1000%10 c=s//100%10 d=s%10 print(str(d)+str(b)+str(c)+str(a))