#include using namespace std; int main() { ios::sync_with_stdio(false); int N; cin >> N; vector> AB(N), XY; for (int i = 0, a, b; i < N && cin >> a >> b; i++) AB.at(i) = {a, b}; int M; cin >> M; XY.resize(M); for (int i = 0, x, y; cin >> x >> y; i++) XY.at(i) = {x, y}; vector V(M); for (int i = 0; i < N; i++) for (int j = 0; j < M; j++) if (AB.at(i).first >= XY.at(j).first && AB.at(i).second <= XY.at(j).second) V.at(j)++; int ma = *max_element(V.begin(), V.end()); if (!ma) return cout << 0 << "\n", 0; for (int i = 0; i < M; i++) if (V.at(i) == ma) cout << i + 1 << "\n"; }