PROGRAMMING:Time conversion
Enter a positive integer repeat (0 < repeat < 10) and perform the following operations:
Input a time value, and then input the number of seconds n, output the time value after N seconds, the expression of time is: Minutes: seconds, more than 24 hours from 0:00 to start timing again.
Output format: printf ("time% d% d% d",);
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( repeat=3)
0:0:1
fifty-nine ( Seconds (n = 59)
11:59:40
thirty ( Seconds (n = 30)
23:59:40
three hundred and one ( Seconds (n = 301)
```
###Output example:
```out
time: 0:1:0 ( 0:0:01 plus 59 seconds)
time: 12:0:10 ( 11: 59:40 plus 30 seconds of new time)
time: 0:4:41 ( 23:59:40 plus 301 seconds)
```
answer:If there is no answer, please comment
Input a time value, and then input the number of seconds n, output the time value after N seconds, the expression of time is: Minutes: seconds, more than 24 hours from 0:00 to start timing again.
Output format: printf ("time% d% d% d",);
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( repeat=3)
0:0:1
fifty-nine ( Seconds (n = 59)
11:59:40
thirty ( Seconds (n = 30)
23:59:40
three hundred and one ( Seconds (n = 301)
```
###Output example:
```out
time: 0:1:0 ( 0:0:01 plus 59 seconds)
time: 12:0:10 ( 11: 59:40 plus 30 seconds of new time)
time: 0:4:41 ( 23:59:40 plus 301 seconds)
```
answer:If there is no answer, please comment