#include using namespace std; int main() { const int max=100; int t[max][max]; int m, n; cout<<" how many rows and columns? (between: 1<=(m, n)<= "<>m>>n; if(m<=1 || m>max || n<=1 || n>max) cout<<"not good, give it again: "<max || n<=1 || n>max); //fill the matrix cout<<" give the values: "<>t[i][j];} } cout<<" the elements of the matrix: "<