#include <iostream>
using namespace std;

int main() {
    int n;
    cin >> n;
    int a[n];
    for (int i = 0;i < n;i++) {
        cin >> a[i];
    }
    int m;
    cin >> m;
    int a2[m];
    for (int i = 0;i < m;i++) {
        cin >> a2[i];
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: