package p;
class A{
	private int i;
	A(){
		this(5);
	}
	A(int u){
		super();
		i= 0;
	}
	void f(){
	}
}