1#include<iostream>
2using namespace std;
3int main()
4{
5 int a[10][10], transpose[10][10], row, column, i, j;
6 cin>>row;
7 cin>>column;
8 cout<<"Enter the elements of the matrix:"<<endl;
9
10 for(int i = 0; i<row; ++i){
11 for(int j=0; j<column; ++j)}
12 cout<<"The matrix is:"<<endl;