using namespace std; int main() { int time,a,b,c; cin>>time; a=time/3600; b=time%3600/60; c=time%3600%60; printf(“%d:%d:%d”,a,b,c); return 0; }