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