Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
90089
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))