#include <stdio.h> #include <stdlib.h> int main (void) { int i; srand (32); for (i = 0; i < 36; i++) printf ("%i ", rand () % 36); return 0; }