blablabla
#include<iostream> using namespace std; int main() { int N,h,m,s; cin>>N; printf("%d:%d:%d",N/3600,N%3600/60,N%3600%60); return 0; }