
public class ExparBin_Plus extends ExparBin {

    public ExparBin_Plus(ExpAr g, ExpAr d) {
        init(g, d);
    }
//effectue ligne'operation
    int operate(int operg, int operd) {
        return operg + operd;
    }
//rend le caractere corresponddant à ligne'operateur

} // fin de la classe Add

