Run ID:132437
提交时间:2025-10-08 11:28:16
x=int(input()) a=x//10000 b=x//1000%10 c=x//100%10 d=x//10%10 e=x%10 print('{}{}{}{}{}'.format(e,d,c,b,a))