#include <bits/stdc++.h>
using namespace std;
const int N =10010;
int a[N][N],s[N][N];
int n, m, q;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m >> q;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= m;j ++)
cin >>a[i][j]; //输入
for(int i = 1; i <= n ;i++)
for(int j = 1; j <= m ;j++)
s[i][j] = s[i - 1][j] + s[i][j - 1] -s[i - 1][j - 1] + a[i][j];
//以此算出每个位置的前缀和 减了一遍的s[i-1][j-1]要保留一遍,这样才能形成完整面积
while(q--)
{
int x1, x2, y1,y2;
cin >> x1 >> y1 >> x2 >> y2;
cout << s[x2][y2] - s[x1-1][y2] - s[x2][y1 - 1] + s[x1-1][y1-1] <<endl;
//记得加上多减的部分的面积
}
return 0;
}