#D6445. Shik and Stone

    ID: 5356 Type: Default 2000ms 268MiB

Shik and Stone

Shik and Stone

We have a grid of H rows and W 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 a_{ij} (1 \leq i \leq H, 1 \leq j \leq W). After Shik completes all moving actions, a_{ij} is # if the stone had ever located at the i-th row and the j-th column during the process of moving. Otherwise, a_{ij} is .. Please determine whether it is possible that Shik only uses right and down moves in all steps.

Constraints

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

Input

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

H W a_{11}a_{12}...a_{1W} : a_{H1}a_{H2}...a_{HW}

Output

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

Examples

Input

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

Output

Possible

Input

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

Output

Possible

Input

5 3

..#

..

Output

Impossible

Input

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

Output

Impossible

inputFormat

Input

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

H W a_{11}a_{12}...a_{1W} : a_{H1}a_{H2}...a_{HW}

outputFormat

Output

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

Examples

Input

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

Output

Possible

Input

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

Output

Possible

Input

5 3

..#

..

Output

Impossible

Input

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

Output

Impossible

样例

5 3

..#

..
Impossible