Problem A: 总秒数 → 时:分: 秒

Problem A: 总秒数 → 时:分: 秒

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

Description

输入一个总秒数(非负整数),将其转换为小时:分钟:秒的格式输出。
公式:小时 = 总秒数 / 3600,分钟 =(总秒数 %3600)/60,秒 = 总秒数 %60

Sample Input Copy

3661

Sample Output Copy

01:01:01