// Example program
#include <iostream>
#include <string>
#include <cstdlib>

using namespace std;

int main()
{
    int high = 7;
    int low = 2;
    
    int numbers  = 10;
    int arr[10];
    int arr2[10];
    
    for (int i=0;i<numbers;i++)
  {
   arr[i]=rand()%(high+1-low)+low;;
   cout << arr[i] << " ";
   arr2[i]= arr[i];
   cout << arr2[i] << " ";
  }
    
    
}
