Run ID:110884

提交时间:2025-02-23 16:56:03

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