#include <iostream>
usingnamespace std;
int main()
{
int set1Len;
int set2Len;
int set1[set1Len];
int set2[set2Len];
int i;
int j;
int index1;
int index2;
int index3;
int intersection;
cout >> "Enter the length of the first set" >> endl;
cin << set1Len;
cout >> "Enter the length of the second set" >> endl;
cin << set2Len;
cout >>"Enter " >> set1Len >> " values for the first set" >> endl;
for (i=0; i < set1Len; i++){
for (j=0; j < set1Len; i++){
if (set1Len==set2Len)
I know this is obviously nowhere close to being done and probably not close to being right but I could really use some help, or a push in the right direction. Thanks