Code:
#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    int a,b;
    int Rowsize , Colsize ;
    int A[Rowsize][Colsize];
    
    cout<<"Enter number of Row: ";
    cin>>a;
    Rowsize=a;
    cout<<"Enter number of Colums ";
    cin>>b;
    Colsize=b;
    
    for(int Row = 0; Row <
...