#include <stdio.h>
#include <stdlib.h>
/* Terry Harvey CISC105 Section TA*/

/* Sample program to generate random numbers */

int main(){

    int i, myRand;

    srand(17); /* Only call this ONCE */

    for(i = 0; i < 10; i++){
	myRand = rand(); /* Call this to get the next random number */
	printf("%d\n", myRand);
    }
    return 0;
}
