Run ID:131954
提交时间:2025-10-02 10:46:31
n = int(input()) h = n // 3600 m = (n - h*3600) // 60 s = n % 60 print(h,m,s)