rational &rational::operator=(const rational &r) { num = r.num; denom = r.denom; return *this; } // End of File