package p;
class A{
	private int f;
	void m(){
		try{
			f++;
		} catch (Exception g){
			f++;
		}
	}
}