How to take size and elements of array input in one line?

In the next line the first integer denotes the number of cooks L and L integers follow in the same line each denoting the rank of a cook.

How can i take this input?

@itismohitonUse this :slight_smile:
cin>>n;
for( int i=0; i<n ;i++) cin>>arr[i];

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.

DOubt resolved. Thank you sir