0_0_38906926_29472.cpp:4:10: error: expected initializer before '-' token
4 | int n,ans-INT_MAX,a[N][N],b[N][N];
| ^
0_0_38906926_29472.cpp: In function 'int main()':
0_0_38906926_29472.cpp:9:30: error: 'a' was not declared in this scope
9 | cin>>a[i][j];
| ^
0_0_38906926_29472.cpp:10:25: error: 'b' was not declared in this scope
10 | b[i][j]=b[i][j-1]+b[i-1][j]-b[i-1][j-1]+a[i][j];
| ^
0_0_38906926_29472.cpp:17:41: error: 'ans' was not declared in this scope; did you mean 'abs'?
17 | ans=max(ans,b[i][j]+b[p][q]-b[i][q]-b[p][j]);
| ^~~
| abs
0_0_38906926_29472.cpp:17:53: error: 'b' was not declared in this scope
17 | ans=max(ans,b[i][j]+b[p][q]-b[i][q]-b[p][j]);
| ^
0_0_38906926_29472.cpp:22:15: error: 'ans' was not declared in this scope; did you mean 'abs'?
22 | cout<<ans;
| ^~~
| abs
|