Problem5877--时间转换

5877: 时间转换

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

Description

给定秒数 $seconds\ (0< seconds < 100,000,000)$,把秒转化成小时、分钟和秒。

Input

一行,包括一个整数,即给定的秒数。

Output

一行,包含三个整数,依次为输入整数对应的小时数、分钟数和秒数(可能为零),中间用一个空格隔开。

Sample 1 Input

3661

Sample 1 Output

1 1 1

Sample 2 Input

1

Sample 2 Output

0 0 1

Source/Category