Rationnel Entier::operator / (Rationnel r1){
    Rationnel res(n*r1.GetDen(), r1.GetNum());
    res.Simplification();
    return res;
}