Run ID:132230

提交时间:2025-10-07 13:46:40

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