public fraction GetDiv(fraction other) { return(new fraction(this.numerator * other.denominator, this.denominator * other.numerator)); }