fork download
  1. #include "bits/stdc++.h"
  2. using namespace std;
  3.  
  4. int main() {
  5. int inf = INT_MAX;
  6. cout<<(inf+1);
  7. cout<<"\n"<<INT_MIN;
  8. return 0;
  9. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
-2147483648
-2147483648