#include<bits/stdc++.h>
using namespace std;
char a[1005][1005];
int b[1005][1005];
int main(){
int n,m;
cin>>n>>m;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
b[i][j] = 0;
}
}
for(int i=0;i<n;i++){
for(int j=0;i<m;j++){
cin>>a[i][j];
if(a[i][j]=='*'){
b[i+1][j+1]++;
b[i+1][j-1]++;
b[i+1][j]++;
b[i][j+1]++;
b[i][j-1]++;
b[i-1][j]++;
b[i-1][j+1]++;
b[i-1][j-1]++;
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(a[i][j]=='*'){
cout<<'*';
}
else{
cout<<b[i][j];
}
}
cout<<endl;
}
return 0;
}