#ABC107B. [ABC107B] Grid Compression

[ABC107B] Grid Compression

Score : 200200 points

Problem Statement

There is a grid of squares with HH horizontal rows and WW vertical columns. The square at the ii-th row from the top and the jj-th column from the left is represented as (i,j)(i, j). Each square is black or white. The color of the square is given as an HH-by-WW matrix (ai,j)(a_{i, j}). If ai,ja_{i, j} is ., the square (i,j)(i, j) is white; if ai,ja_{i, j} is #, the square (i,j)(i, j) is black.

Snuke is compressing this grid. He will do so by repeatedly performing the following operation while there is a row or column that consists only of white squares:

  • Operation: choose any one row or column that consists only of white squares, remove it and delete the space between the rows or columns.

It can be shown that the final state of the grid is uniquely determined regardless of what row or column is chosen in each operation. Find the final state of the grid.

Constraints

  • 1H,W1001 \leq H, W \leq 100
  • ai,ja_{i, j} is . or #.
  • There is at least one black square in the whole grid.

Input

Input is given from Standard Input in the following format:

HH WW

a1,1...a1,Wa_{1, 1}...a_{1, W}

::

aH,1...aH,Wa_{H, 1}...a_{H, W}

Output

Print the final state of the grid in the same format as input (without the numbers of rows and columns); see the samples for clarity.

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

The second row and the third column in the original grid will be removed.

3 3
#..
.#.
..#
#..
.#.
..#

As there is no row or column that consists only of white squares, no operation will be performed.

4 5
.....
.....
..#..
.....
#
7 6
......
....#.
.#....
..#...
..#...
......
.#..#.
..#
#..
.#.
.#.
#.#