Problem3419--时间显示

3419: 时间显示

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

Description

梓轩要和雨凡合作开发一个时间显示的网站。

在服务器上,朋友已经获取了当前的时间,用一个整数表示,值为从 lns="http://www.w3.org/1998/Math/MathML">1970 年 lns="http://www.w3.org/1998/Math/MathML">1 月 lns="http://www.w3.org/1998/Math/MathML">1 日 lns="http://www.w3.org/1998/Math/MathML">00:00:00 到当前时刻经过的毫秒数。

现在,梓轩要在客户端显示出这个时间。梓轩不用显示出年月日,只需要显示出时分秒即可,毫秒也不用显示,直接舍去即可。

给定一个用整数表示的时间,请将这个时间对应的时分秒输出。

Input

输入一行包含一个整数,表示时间。

Output

输出时分秒表示的当前时间,格式形如 HH:MM:SS,其中 HH 表示时,值为 lns="http://www.w3.org/1998/Math/MathML">0 到 lns="http://www.w3.org/1998/Math/MathML">23MM 表示分,值为 lns="http://www.w3.org/1998/Math/MathML">0 到 lns="http://www.w3.org/1998/Math/MathML">59SS 表示秒,值为 lns="http://www.w3.org/1998/Math/MathML">0 到 lns="http://www.w3.org/1998/Math/MathML">59。时、分、秒 不足两位时补前导 lns="http://www.w3.org/1998/Math/MathML">0

Sample Input Copy

46800999

Sample Output Copy

13:00:00

Source/Category