Run ID:132653

提交时间:2025-10-12 09:19:35

X=int(input()) a=X//3600 b=(X-a*3600)//60 c=X-a*3600-b*60 print(a,b,c)