2800: Clock

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:21 解决:8

题目描述

In order to get the run time of a user function,you can use the clock() function in time.h.Clock() use clock tick to measure time,which will increase CLK_TCK per second.Before a user function runs,you can call clock() and get the current tick C1,and after it finishes,call clock again and get another tick C2.Then the tot time the user function runs is (C2-C1)/CLK_TCK.
In this problem,you can assume that CLK_TCK is 100.You should get the rum time from C1 and C2.

输入

Each line contains 2 integers C1 and C2(0<=C1<C2<=1e7).

输出

Output the run time in the format of “hh:mm:ss”(hh is the hour,mm is the minute,ss is the second,each one should be two decimal places).Please note that less than one second of time should be rounded(四舍五入) to seconds.

样例输入 复制

123 4577973
0 49

样例输出 复制

12:42:59
00:00:00