#AGC007A. [AGC007A] Shik and Stone

[AGC007A] Shik and Stone

Score : 200200 points

Problem Statement

We have a grid of HH rows and WW columns. Initially, there is a stone in the top left cell. Shik is trying to move the stone to the bottom right cell. In each step, he can move the stone one cell to its left, up, right, or down (if such cell exists). It is possible that the stone visits a cell multiple times (including the bottom right and the top left cell).

You are given a matrix of characters aija_{ij} (1iH1 \leq i \leq H, 1jW1 \leq j \leq W). After Shik completes all moving actions, aija_{ij} is # if the stone had ever located at the ii-th row and the jj-th column during the process of moving. Otherwise, aija_{ij} is .. Please determine whether it is possible that Shik only uses right and down moves in all steps.

Constraints

  • 2H,W82 \leq H, W \leq 8
  • ai,ja_{i,j} is either # or ..
  • There exists a valid sequence of moves for Shik to generate the map aa.

Input

The input is given from Standard Input in the following format:

HH WW

a11a12a_{11}a_{12}......a1Wa_{1W}

::

aH1aH2a_{H1}a_{H2}......aHWa_{HW}

Output

If it is possible that Shik only uses right and down moves, print Possible. Otherwise, print Impossible.

4 5
##...
.##..
..##.
...##
Possible

The matrix can be generated by a 77-move sequence: right, down, right, down, right, down, and right.

5 3
###
..#
###
#..
###
Impossible
4 5
##...
.###.
.###.
...##
Impossible