package p;
class A{
	int f; // field f, or A.f
	public int getF() {
		return (this.f);
	}	
}