#include <iostream>
#include <iomanip>
using namespace std;
int main() {
int rows;
cout<< "put the number of rows here"" ";
cin >> rows;
cout<< "numbers here""\n ";
int *arr = new int[ rows ];
for( int i = 0; i < rows; i++ ){
cin >> arr[ i ];
}
cout endl;
int col;
cout<< "put the number of columns here"" ";
cin >> col;
cout<< "numbers here""\n ";
int *arra = new int[ col ];
for( int j = 0;j < col; j++ ){
cin >> arra[ j ];
}
return 0;
}
i want to have a multiplication table after this commands...how can i?? ove try it all