package p;
class A {
	int f(){
		int t= f();
		f();
		return 1;
	}
}
