#include <stdlib.h>
#include <stdio.h>
#include <time.h>
/* function main begins program execution */
int main(void) {
int i;
srand(time(NULL));
for (i = 1; i <= 1; i++) {
/* pick a random number from 1 to 6 and output it */
printf("%10d", 1 + (rand() % 2));
/* if counter is divisible by 5, begin a new line of output */
if (i % 5 == 0) {
printf("\n");
} /* end if */
} /* end for */
return 0; /* indicates successful termination */
} /* end main */