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

int main() {
	srand(time(NULL));
	const int size = rand() % 10 + 1;
	int array[size];
	
	for ( int i = 0; i < size; i++ ) {
		array[i] = rand() % 100;
		printf ("%d ", array[i]);
	}
    
    return 0;
}
