public class Demo1 { public static void main( String[] args ) { System.out.println("Mystery:"); { int x = 123; System.out.println( x ); // (1) } System.out.println( x ); // (2) // This statement will produce an error // Why ??? } }