Run ID:132238

提交时间:2025-10-07 14:01:05

n = int(input()) h = n // 3600 m = (n - h*3600) // 60 s = n % 60 print(h,m,s)