#include "bag.hpp"
#include <iostream>

main()
{
  bag<int> x;
  for (int i=0; i<5; i++)
    x.insert(i);
  cout << x.has(3) << endl;
  x.remove(3);
  cout << x.has(3) << endl;
}
