Daffodil International University
Problem Link
//Please follow from main function
#include <stdio.h>
#include <stdlib.h>
int main()
{
int N, s, m, h;
scanf("%d", &N);
h=N/3600;
N%=3600;
m=N/60;
N%=60;
s=N;
printf("%d:%d:%d\n", h,m,s);
return 0;
}
uva
0 Comments