#include int main() { int i,j,m,n; cout <<"Enter size of array 1:"; cin >> m; cout <<"Enter size of array 2:"; cin >> n; int a[m]; int b[n]; cout <<"Enter elements of array 1:"; for(i=0;i> a[i]; for(i=0;i> b[i]; i=0;j=0; while((ib[j]) j++; else { cout << a[i++]<<" "; j++; } } return 0; }