Run ID:110887

提交时间:2025-02-23 17:21:26

s = int(input()) a = s//10000 b = s//1000%10 c = s//100%10 d = s//10%10 e = s%10 print(e,d,c,b,a,sep="")