Run ID:90434
提交时间:2024-09-14 20:02:54
s = int(input()) h = s//3600 f = s%3600//60 s1 = s%3600%60 print(h,f,s1)