#include using namespace std; void aUnionB(int A[], int B[], int a, int b) { int n = a + b; int aUb[n]{0}; // n is max num of elements