按题意模拟即可
#include<iostream>
using namespace std;
const int N=110;
bool g[N][N];
int main(){
int n;
cin>>n;
int res=0;
while(n--){
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
for(int i=x1;i<x2;i++)
for(int j=y1;j<y2;j++){
if(!g[i][j]){
g[i][j]=true;
res++;
}
}
}
cout<<res<<endl;
return 0;
}