Problem1038--Digital Time

1038: Digital Time

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

Given an integer S [second] and converts it to hh:mm:ss where hhmmss denote hours, minutes (less than 60) and seconds (less than 60) respectively.

Input

One integer which is S  ( $ 0 \leq S \leq 86400 $ ) 

Output

Print hhmm and ss separated by ':'. You do not need to put '0' for a value, which consists of a digit.

Sample Input Copy

3676

Sample Output Copy

1:1:16

Source/Category