// Online C++ compiler to run C++ program online #include using namespace std; int main() { int length1, length2; cout << "write the length first one: "; cin >> length1; int A1[length1]; cout<< "Write numbers for the first array: "<< endl; for(int i = 0; i < length1; i++){ cin >> A1[i]; } cout << "write the length second one: "; cin >> length2; int A2[length2]; cout<< "Write numbers for the second array: "<< endl; for(int i = 0; i < length2; i++){ cin >> A2[i]; } int A3[length1 + length2]; for (int i = 0; i < length1; i++){ A3[i] = A1[i]; } for(int i = 0; i < length2; i++){ A3[length1 + i] = A2[i]; } for (int step = 0; step < length1 + length2 -1; ++step) { for (int i = 0; i < length1 + length2 - step - 1; ++i) { if (A3[i] > A3[i + 1]) { int temp = A3[i]; A3[i] = A3[i + 1]; A3[i + 1] = temp; } } } for(int i = 0; i