#include<stdio.h>
#include<stdlib.h>
#include<time.h>

/* #include<math.h> */
/**
 * Terry Harvey CIS 105 Section 010 TA Tina Weymouth
 *  Demonstration program for random numbers
 **/

int main(){

    srand( time(NULL) );

    printf("%d\n", rand() );


    return 0;

}


