Код на C++
#include <vector>
#include <iostream>
#include <random>
#include <ctime>
using namespace std;
int main() {
srand(time(0));
vector <int> first;
vector <int> second;
for (int i = 0; i < rand() % 10 + 3; i++) {
first.push_back(rand());
cout << first[i] << " ";
}
cout << endl;
second.insert(second.begin(), first.at(0));
second.insert(second.begin() + 1, first.at(1));
second.insert(second.begin() + 2, first.at(first.size()-2));
for (int i = 0; i < 3; i++) {
cout << second[i] << " ";
}
}