// telefonkozpont.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <queue>
#include <algorithm>
#define ll long long
using namespace std;
ll n, m,q;
vector<ll>x,st;
void epit(ll p, ll l, ll r)
{
if (l == r)
{
st[p] = x[l];
return;
}
ll k = (l + r) / 2;
epit(2*p, l, k);
epit(2*p+1, k + 1, r);
st[p] = max(st[2 * p], st[2 * p + 1]);
}
ll leker(ll p, ll l, ll r, ll a, ll b)
{
if (a <= l && r <= b)
{
return st[p];
}
else if (b < l || r < a)return 0;
ll k = (l + r) / 2;
return max(leker(2 * p, l, k, a, b), leker(2 * p + 1, k + 1, r, a, b));
}
int main()
{
cin >> m >> n >> q;
x.resize(m + 2);
st.resize(4 * m + 1);
for (int i = 1; i <= n; i++)
{
ll a, b;
cin >> a >> b;
x[a]++;
x[b + 1]--;
}
for (int i = 1; i <= m; ++i)
{
x[i] += x[i - 1];
}
epit(1, 1, n);
for (int i = 1; i <= q; ++i)
{
ll a, b;
cin >> a >> b;
cout<<leker(1, 1, n, a, b)<<"\n";
}
return 0;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file