Run ID:132218

提交时间:2025-10-07 13:30:18

x=int(input()) a=x//1000 b=x//100%10 c=x//10%10 d=x%10 print("{}{}{}{}".format(d,a,b,c))