//satck //stack< int > s; s.push(1); int ans = s.top(); s.pop();
//queue queue[HTML_REMOVED] q; q.push(1); int ans = q.top(); q.pop();