Run ID:90452
提交时间:2024-09-14 20:49:19
s=input().split() a=int(s[0]) n=a//3600 m=a%3600//60 b=a%3600%60 print(n,m,b)