package p;

class A {
	A(int b, int a){}
	A(){
		this(2, 3);
	}
}