package examples.exam1;

class A {
	int a1(int n) {return n++;} 	
	int a2(int n) {
		int j, i=3*a1(2)*5; 
		return a1(a1(n)+1)+i;
	} 	 
}


