Problem2360--When

2360: When

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

Description

Time Limit: 2 sec / Memory Limit: 1024 MB
Score : 100100 points


AtCoder初学者比赛通常在21:00开始,持续100分钟。

您将得到一个介于0和100(含)之间的整数K。以HH:MM格式打印21:00后K分钟的时间,其中HH表示24小时制的小时,MM表示分钟。如果小时或分钟只有一位数字,请在开头加一个0,表示为2位整数。


Problem Statement

AtCoder Beginner Contest usually starts at 21:00 JST and lasts for 100100 minutes.
You are given an integer KK between 00 and 100100 (inclusive). Print the time KK minutes after 21:00 in the HH:MM format, where HH denotes the hour on the 2424-hour clock and MM denotes the minute. If the hour or the minute has just one digit, append a 00 to the beginning to represent it as a 22-digit integer.

Constraints

  • KK is an integer between 00 and 100100 (inclusive).

Input

Input is given from Standard Input in the following format:
KK

Output

Print the time KK minutes after 21:00 in the format specified in the Problem Statement.

Sample Input Copy

63

Sample Output Copy

22:03

HINT

63 minutes after 21:00, it will be 22:03, so 22:03 should be printed.
The following outputs would be judged incorrect:
  • 10:03
  • 22:3

Source/Category