What is output by the following code?

public static void stuff(int w) {
w -= 2;
}

public static void main(String a[]) {
int n = 2;
stuff(n);
System.out.print(n);
}


1. 0
2. 4
3. 1
4. 3
5. 2