document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. main()
  5. {
  6.   int X = 1;
  7.   int Y = ( INT_MAX + X );
  8.   printf("%i\\n", Y);
  9.   return 0;
  10. }
');