#include <boost/random.hpp>
#include <boost/random/uniform_int.hpp>

int main()
{
    boost::mt19937 engine1(1234);
    boost::mt19937 engine2(1234);
    boost::uniform_int<> dist(100,200);

    for (int i=0; i<20; i++)
    {
         std::cout << dist(engine1) << " is equal to " << dist(engine2) << std::endl;
    }
}
