Minutes to h:min

aws4_request&X-Amz-Date=20220411T080047Z&X-Amz-Expires=86400&X-Amz-Signature=b8dd42e8760d0ab532906ed885626fe987e415eff928f4c59f1991f6723b44d0&X-Amz-SignedHeaders=host&x-id=GetObject.png

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

To check your solution you need to sign in
Sign in to continue