#abc075b. [abc075_b]Minesweeper

[abc075_b]Minesweeper

Problem Statement

You are given an H×WH × W grid.
The squares in the grid are described by HH strings, S1,...,SHS_1,...,S_H.
The jj-th character in the string SiS_i corresponds to the square at the ii-th row from the top and jj-th column from the left (1leqileqH,1leqjleqW)(1 \\leq i \\leq H,1 \\leq j \\leq W).
. stands for an empty square, and # stands for a square containing a bomb.

Dolphin is interested in how many bomb squares are horizontally, vertically or diagonally adjacent to each empty square.
(Below, we will simply say "adjacent" for this meaning. For each square, there are at most eight adjacent squares.)
He decides to replace each . in our HH strings with a digit that represents the number of bomb squares adjacent to the corresponding empty square.

Print the strings after the process.

Constraints

  • 1leqH,Wleq501 \\leq H,W \\leq 50
  • SiS_i is a string of length WW consisting of # and ..

Input

Input is given from Standard Input in the following format:

HH WW S1S_1 :: SHS_H

Output

Print the HH strings after the process.
The ii-th line should contain a string TiT_i of length WW, where the jj-th character in TiT_i corresponds to the square at the ii-th row from the top and jj-th row from the left in the grid (1leqileqH,1leqjleqW)(1 \\leq i \\leq H, 1 \\leq j \\leq W).


Sample Input 1

3 5
.....
.#.#.
.....

Sample Output 1

11211
1#2#1
11211

For example, let us observe the empty square at the first row from the top and first column from the left.
There is one bomb square adjacent to this empty square: the square at the second row and second column.
Thus, the . corresponding to this empty square is replaced with 1.


Sample Input 2

3 5
#####
#####
#####

Sample Output 2

#####
#####
#####

It is possible that there is no empty square.


Sample Input 3

6 6
#####.
#.#.##
####.#
.#..#.
#.##..
#.#...

Sample Output 3

#####3
#8#7##
####5#
4#65#2
#5##21
#4#310