Listing 4

rational::operator+(long n)
       {
       rational result(*this);
       return result += rational(n, 1);
       }

// End of File