There's no n as input size

in the input

3 2 1 -1 -1 -1 5 6 4 -1 -1 -1 -1

what is ‘n’ here?

@alamsarfraz422 you can take input like this

vector<int> v; 
int temp;
while (cin >> temp) // takes input till End of file
{
  v.push_back(temp);
}
int n = v.size(); // to get n

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.