Run ID:131941

提交时间:2025-10-01 20:38:02

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