清爽的八达鸟啊
#include<bits/stdc++.h>
using namespace std;
const int N = 105;
int n;
bool st[N][N];
void paint(int x1,int y1,int x2,int y2)
{
for(int i=x1;i<=x2;i++)
{
for(int j=y1;j<=y2;j++)
{
st[i][j]=true;
}
}
}
int main()
{
cin>>n;
while(n--)
{
int x1,y1,x2,y2;
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
paint(x1,y1,x2-1,y2-1);
}
int res=0;
for(int i=0;i<N;i++)
for(int j=0;j<N;j++)
{
if(st[i][j]==true)
{
res++;
}
}
cout<<res;
return 0;
}