#include
#include
using namespace std;
int main() {
int m,n;
cin>>m>>n;
int arr[m][n];
for (int row=0;row<m;row++){
for (int col=0; col<n;col++){
cin>>arr[row][col];
cout<<arr[row][col]<<" " ;
}
cout<<endl;
}
cout<<"********* "<<endl;
for (col =0;col<n;col++){
if (col%2==0){
}
}
return 0 ;
}
unable to think further .