fork download
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main(void) {
  5. int max = INT_MAX;
  6. printf("%d\n", max*1000);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
-1000