Run ID:110885

提交时间:2025-02-23 16:57:27

s = int(input()) a = s//1000 b = s//100%10 c = s//10%10 d = s%10 print(d,a,b,c,and="")