Minutes to h:min

Given the minutes passed since midnight 00:00
, print what time it is in the format hour:minute
.
Input | Output |
---|---|
1048 | 17:28 |
2096 | 10:56 |
Note that the input can contain minutes that are larger than 24 hours, but the output needs to always be in the range 0:0 - 23:59
.
Hint
You can use the remainder operator %
to make sure the values for hours and minutes stay in the appropriate range
Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB