eolymp
bolt
Try our new interface for solving problems
Problems

Alarm Clock

Alarm Clock

Alice likes her digital alarm clock. She sets them up every evening. Last night Alice had a dream about her clock. Unfortunately, the only thing she is able to remember is the number of highlighted segments of the clock. Alice wonders what time was set on the clock in her dream.

Alice's clock have four digits: two for hours and two for minutes. For example, the clock below shows 9:30 (note the leading zero).

prb7492_1.gif

The clock uses following digit representation:

prb7492_2.gif

Input

The only line contains single integer n - the number of highlighted segments of the clock in Alice's dream (0n30).

Output

Output five characters in "hh:mm" format - the time shown on the clock in Alice's dream. The time must be correct: 0hh < 24 and 0mm < 60. If there are many possible correct times, output any of them. If there is none, output "Impossible".

Time limit 1 second
Memory limit 128 MiB
Input example #1
23
Output example #1
00:02
Input example #2
28
Output example #2
Impossible
Input example #3
2
Output example #3
Impossible
Source 2014 ACM NEERC, Northern Subregion, November 8, Problem A