public class QuizClassMethodVarscope
{

    static int a = 0;

    public static void main(String[] args){
	int a,b,c;
	a = 4;
	b = 8;
	c = mangle(a,b);
	System.out.println();	System.out.println();
	System.out.println("a = " + a + " b = " + b + " c = " + c);
	System.out.println("we cannot print the value of x or t here? ");
	System.out.println();	System.out.println();

    }

    public static int mangle(int x, int y){
	// Notice that x and y are local method integer variables!

	int t = 0;
	t = x;
	y = t;
	System.out.println();	System.out.println();
	System.out.println("We are now inside mangle()");
	System.out.println("Here is local a value for y: " + y);
	System.out.println("print the value of a from here: " + a);
	return t + x;
    }
}