Run ID:132328

提交时间:2025-10-08 08:35:29

n = int(input()) a = str(n//10000) #万 b = str(n//1000%10) #千 c = str(n//100%100%10) #百 d = str(n//10%10) #十 e = str(n%10) #个 print(e+d+c+b+a)