package p;

class A {
	private static void foo(String[] parameters, int j) {
		int temp = parameters.length + j;
		System.out.println(temp);
	}
}