#include <stdio.h>
#include <limits.h>


int main() 
 { 
 static long x = LONG_MIN;
 printf("Hello, world!  LONG_MIN is %ld\n", x); 
 return 0; 
 }
