
public class test137j {
    public static void zeroOutArray(int [] array){
	for(int i=0; i < array.length; i++){
	    array[i] = 0;
	}
    }
}