Run ID:132224
提交时间:2025-10-07 13:35:04
a = int(input()) b = a//1000 c = a%1000//100 d = a%100//10 e = a%10 ans = c*10+b*100+d*1+e*1000 print(ans)