Problem5492--时间间隔

5492: 时间间隔

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

Description

给出两个时刻,问第一个时刻到第二个时刻需要经过多少秒,并保证第一个时刻比第二个时刻早。

Input

输入有两行,时间都由 $xx:yy:zz$ 表示,$xx$ 表示小时,$yy$ 表示分钟,$zz$ 表示秒。
第一行为开始时间,第二行为结束时间。
$xx,yy,zz$ 都是长度为 $2$ 的数字串,可以有前导零。
$xx$ 的范围一定是 $0\sim 23$。
$yy$ 和 $zz$ 的范围一定是 $0\sim 59$。

Output

一行一个正整数,表示者两个时间间隔,以秒为单位。

Sample 1 Input

12:34:56
12:35:00

Sample 1 Output

4

Sample 2 Input

02:34:56
12:35:00

Sample 2 Output

36004

Sample 3 Input

12:04:56
12:35:00

Sample 3 Output

1804

Source/Category