Run ID:87715
提交时间:2024-08-11 11:27:08
r=input() r=int(r) a=int(r/3600) b=int((r%3600)/60) c=int(r%3600)%60 print(a,b,c)