Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <set>
- #include <vector>
- #include <deque>
- #include <map>
- #include <cmath>
- #define se second
- #define fi first
- #define mp make_pair
- #define pb push_back
- typedef long long ll;
- typedef long double ld;
- using namespace std;
- int main() {
- int n;
- cin >> n;
- vector<int> a;
- for (int i = 0; i < n; i++) {
- int x;
- cin >> x;
- a.push_back(x);
- }
- int m;
- cin >> m;
- vector<int> b(m);
- for (int i = 0; i < m; i++) {
- cin >> b[i];
- }
- int k;
- cin >> k;
- vector<int> c(k);
- for (auto& e : c) cin >> e;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment