import java.lang.Integer;
public class BinaryInMeth {
	
	m(a){
		return ++a;
	}
	
	m2(a,b){
		return m(a+b);
	}
}