#include #include using namespace std; using namespace boost::random; int main(void) { mt19937 rng; rng.seed(54321); normal_distribution<> normal3_10(3, 10); for(size_t i=0; i < 10; ++i) cout << normal3_10(rng) << endl; return 0; }