// random numbers

#include <iostream>
#include <cstdlib>	// for rand and srand functions
#include <ctime>
using namespace std;

int main()
{
	int num = 0;

	// srand(time(NULL));
	srand(1);

	for (int i = 0; i < 10; i++)
	{
		num = rand() % 100 + 1; // random number between 1 and 100
		cout << num << " ";
	}

	system("pause");
	return 0;
}// end of main



