//URI 1019
//Author: Humaun Kabir
#include <stdio.h>
int
main(){
n, h, m, s;
scanf
(
"%d"
,&n);
h = n / 3600;
m = n % 3600 / 60;
s = n % 60;
printf
"%d:%d:%d\n"
,h, m, s);
return
0;
}
Thank you for commenting. Please wait for response :)
No comments:
Post a Comment
Thank you for commenting. Please wait for response :)