//abstract and make private
package p;
class A{
	private int f;
	void m(){
		int g= f;
	}
	public int getF(){
		return f;
	}
}