11 lines
113 B
Plaintext
Raw Permalink Normal View History

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