Run ID:132335

提交时间:2025-10-08 08:46:46

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