Run ID:132210
提交时间:2025-10-07 13:20:01
x=int(input()) a=x//10000 b=x//1000%10 c=x//100%10 d=x//10%10 e=x%10 f=e*10000+d*1000+c*100+b*10+a print(f)