Queue Stack C++

#include 
#include 
#include 
#include 
using namespace std;
int main()
{
     stack< string, vector > s;
     s.push( "me" );
     s.push( "to" );
     s.push( "talk" );
     while ( !s.empty() ) {
          cout << s.top() << " ";
          s.pop();
     }
     return 0;
}