H :: Domino Art

Time Limit: 1 Second    Memory Limit: 32768 KB

Lawliet is a very intelligent person, he is often seen solving puzzles or painting beautiful landscapes, in his new challenge he is trying to make some art with dominoes, he will draw a figure on a rectangular grid consisting of 1x1 squares by marking some of these squares, after that he will try to cover the marked squares with dominoes. As you probably know dominoes consist of pieces of size 2x1, for simplicity we assume that the dominoes can only be put horizontally or vertically and that you have an unlimited amount of dominoes available. The cover has to be perfect, meaning that the dominoes must cover only the marked positions and the dominoes must cover all of them, also all the dominoes must lie strictly inside the rectangular grid. Below are shown two examples of possible figures, which corresponds to the two first inputs in the sample input, the first is possible to cover with dominoes, while the second is not:

http://sharecode.ir/assets/problem_images/1072_744a77dd06ee89a27382fc1baef50b78.jpg

http://sharecode.ir/assets/problem_images/1072_74a3828c4b73d56630e64948d0cde872.jpg

Now your task is this: given a figure of marked squares on a rectangular grid, you must help Lawliet to determine if it is possible to exactly cover the figure with dominoes.

Input

The input consists of several test cases separated by blank lines. First line of each test case contains two positive integers R and C (1<=R,C<=60) the number of rows and columns of the rectangular grid, respectively. On the following R lines there is the actual configuration consisting of a grid of dots '.'

and sharps "#". Each character represents a square of the rectangular grid. A dot "." represents a square which is unmarked and a sharp "#" represents a square marked to be part of the desired figure. A case when R=C=0 denotes the end of the input, this case should not be processed.

Output

For each test case output a line containing the number of the case (starting at 1) and only one of the following two messages: If it is impossible to cover the marked squares with dominoes configuration output a single word "Impossible".

If it is possible print the single word "Possible". See examples below for more details.

Sample Input

4 4
..##
.##.
.###
.###

4 4
####
##.#
###.
.#.#

4 16
###.###.###.###.
.#..#...#.#.#...
.#..#...###.#...
###.###.#...###.

0 0

Sample Output

Case 1: Possible
Case 2: Impossible
Case 3: Impossible
Submit