Main.cc:3:17: error: 'INT_MAX' was not declared in this scope
int a[9][9],Min=INT_MAX,Max=INT_MIN;
^
Main.cc: In function 'int main()':
Main.cc:13:24: error: 'Max' was not declared in this scope
if(a[i][j]>Max)Max=a[i][j];
^
Main.cc:16:25: error: 'Max' was not declared in this scope
cout<Min<<" "<<Max<<endl;
^