hi I'm trying to read that input
2
2
9 97
8 56
3
1 18 6
16 42 100
25 16 17
I can't get the numbers 9, 97, 8, 56 and store them in a vector of
here is my attempt
using namespace std;
int main() {
int test;
cin >> test;
while (test--)
{
int ss_i;
cin >> ss_i;
vector<int> A(ss_i*ss_i);
}
return 0;
}