Problem4499--时间格式

4499: 时间格式

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

Description

一段时间总计 lns="http://www.w3.org/1998/Math/MathML">n 秒。请将这段时间转换成以小时、分钟和秒组成的时间格式,中间以冒号 : 分割。

例如 lns="http://www.w3.org/1998/Math/MathML">n=10000,输出 2:46:40

Input

  • 单个整数:表示 lns="http://www.w3.org/1998/Math/MathML">n

Output

  • 三个整数,用冒号 : 分隔。第一个数表示小时,第二个数表示分钟,第三个数表示秒数。

Sample Input Copy

100

Sample Output Copy

0:1:40

Source/Category