#D9621. Watch

    ID: 7998 Type: Default 1000ms 134MiB

Watch

Watch

Write a program which reads an integer SS [second] and converts it to h:m:sh:m:s where hh, mm, ss denote hours, minutes (less than 60) and seconds (less than 60) respectively.

Constraints

  • 0S864000 \leq S \leq 86400

Input

An integer SS is given in a line.

Output

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

Example

Input

46979

Output

13:2:59

inputFormat

Input

An integer SS is given in a line.

outputFormat

Output

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

Example

Input

46979

Output

13:2:59

样例

46979
13:2:59