Run ID:132205
提交时间:2025-10-07 13:08:01
a=int(input()) x=a//1000 a=a-x*1000 y=a//100 a=a-y*100 z=a//10 a=a-z*10 a=1000*y+100*x+10*a+z print(a)