
public class ExparBin_Moins extends ExparBin {

    public ExparBin_Moins(ExpAr g, ExpAr d) {
        init(g, d);
    }
//effectue l'operation
    int operate(int operg, int operd) {
        return operg - operd;
    }
//rend le caractere corresponddant à l'operateur

}
