/*
Returns a random integer between 0 and RAND_MAX which is 32767.
*/

#include <iostream>
#include <ctime>
using namespace std;
int main()
{
	// First let's see what the value of RAND_MAX is:
	cout << "RAND_MAX = "
		<< RAND_MAX << ". " << endl;

	srand(time(0));
	cout <<  rand() << endl;
	
	return 0;
}
