Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
90365
Run ID
作者
问题
语言
测评结果
Time
Memory
代码长度
提交时间
90365
乔仲熠
04四位数移位
Python3
Accepted
44 MS
3764 KB
97
2024-09-11 20:49:09
Tests(8/8):
Code:
e=input().split() a=int(e[0]) b=a%10 c=a//10%10 d=a//100%10 i=a//1000 print(b,i,d,c,sep='')