Run ID:87711
提交时间:2024-08-11 11:16:36
s=int(input()) a=int(s/3600) z=s%3600 b=int(z/60) c=z%60 print(a,b,c)