Run ID:132229

提交时间:2025-10-07 13:46:08

a = int(input()) b = a//10000 c = a%10000//1000 d = a%1000//100 e = a%100//10 f = a%10 ans = f*10000 + e*1000 + d*100 + c*10 + b*1 print(ans)