#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
 
 const int N = 25;
 int tab[N];
void losuj(int a, int b) {
     srand(time(NULL));
     for (int i = 0; i < N; i++)
     tab[i] = a + rand() % (b - a + 1);
}
void wypisz() {
     for (int i = 0; i < N; i++)
     cout << tab[i] << " ";
     cout << endl;
}

int main() {
  losuj(10, 99);
  wypisz();
  return 0;
}