//change to k j i 
package p;
class A{
	private void m(int k, int j, int i){
	}
	private void foo(){
		m(3, 2, 1);
	}
}