#include <random>

int main()
{
	std::random_device dv;
	std::mt19937 gen(dv());							//Create and seed mt19937 engine with random_device
	std::uniform_int_distribution<> dist(0, 100);
	
	int t[100];
	
	for(int &i : t)
		i = dist(dv);
	return 0;
}
