//To get the maximum and minimum integer value #include<iostream> #include <bits/stdc++.h> using namespace std; int main(){ int n,m; n=INT_MIN; m=INT_MAX; cout<<n<<" "; cout<<m<<" "; return 0; }
int min = INT_MIN;