Run ID:132327

提交时间:2025-10-08 08:31:13

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