List C++

#include 
#include 
#include 
#include 
using namespace std;
int main(int argc, char** argv)
{
  vector myVector;
  list myList;
  myVector.push_back(1);
  myVector.push_back(2);
  myVector.push_back(3);
  
  myList.push_back(1);
  myList.push_back(2);
  myList.push_back(3);
  
  if (myList.size() < myVector.size()) {
    cout << "Sorry, the list is not long enough.\n";
    return (0);
  }
  if (equal(myVector.begin(), myVector.end(), myList.begin())) {
    cout << "The two containers have equal elements\n";
  } 
  if (lexicographical_compare(myVector.begin(), myVector.end(), myList.begin(),myList.end())) {
    cout << "The vector is lexicographically first.\n";
  } else {
    cout << "The list is lexicographically first.\n";
  }
  return (0);
}