// Java program to show
// the value of Integer.MIN_VALUE
class GFG {
// Driver code
public static void main(String[] arg)
{
// Print the value of Integer.MIN_VALUE
System.out.println("Integer.MIN_VALUE = "
+ Integer.MIN_VALUE);
}
}