#include <iostream>
#include <ostream>
#include <vector>
#include <boost/assign/list_of.hpp>
using namespace std;
using namespace boost::assign;

int main()
{
    vector<int> v;
    v.push_back(0);
    v.push_back(1);
    cout << (v == list_of(0)(1)) << endl;
    cout << (v == list_of(1)) << endl;
    cout << (v == list_of(1)(2)) << endl;
}