/// GH  TIme and randomness

#include "..\std_lib_facilities.h"

int main() {
    srand(time(0));
    int maxRand{0}, tempRand;
    cout << "\nRAND_MAX = " << RAND_MAX << endl;
    for(int i = 0; i < 320; ++i) {
        tempRand = rand();
        if(tempRand>maxRand) maxRand = tempRand;
    }
    cout << maxRand;

}
