#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void) {
srand(time(0));
int from = 1, to = 32767;
for (int i = 0; i < 10; i++) {
int randomN = rand() % (from - to + 1) + from;
printf("%d ", randomN);
}
return 0;
}
/*
run:
6823 25056 6495 517 7863 19278 23262 12450 15517 2810
*/