Ребята, давайте жить дружно. Я здесь кое-что написал, а что дальше то делать?
#include <iostream>
using namespace std;
int main()
{
int n, m;
cout << "Enter the number of elements of the first set: ";
cin >> n;
int* arrX = new int[n];
cout << "Enter the elements of the first set: " << endl;
for (int i = 0; i < n; i++)
{
cout << i + 1 << ") ";
cin >> arrX[i];
}
cout << "Enter the number of elements of the second set:";
cin >> m;
int* arrY = new int[m];
cout << "Enter the elements of the second set: " << endl;
for (int i = 0; i < m; i++)
{
cout << i + 1 << ") ";
cin >> arrY[i];
}
}