public class ErroriBlocchi {

    public static void main(String[] args) {

	double a = 0; 

	{
	    int a = 0; // a is already defined
	    int b = 10;
	} 

	System.out.println(b + "/" + a + " = " + (b/a));
	// cannot resolve symbol b
    }
}
