How can I convert this to user input?
#include<iostream>
usingnamespace std;
int main(){
int subject[2][3] = { {100,75,60}, {80,90,100} };
//Convert this in to user input:
for(int i=0; i < 2; i++){
cout << "GRADES" << i+1 << endl;
for( int x = 0; x < 3; x++){
cout << subject[i][x] << " " ;
}
cout << "\n";
}
return 0;
}