Run ID:110886
提交时间:2025-02-23 17:00:13
s = int(input()) a = s//1000 b = s//100%10 c = s//10%10 d = s%10 print(d,a,b,c,sep="")