Getting wrong answer in two cases

Hello @Jun18APP0112,

You are storing the elements of stack a in reverse order in the stack s
while(!a.empty()){
//cout<<a.top()<<endl;
//v.push_back(a.top());
if(i==q-1){
cout<<a.top()<<endl;
}
//The top of a will become the last element of s.
s.push(a.top());
a.pop();
}

Hope, this would help.
Give a like if you are satisfied.

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.