49int main(
int argc,
char** argv )
61 typedef SB::Fraction Fraction;
62 typedef std::back_insert_iterator< Fraction > OutputIterator;
67 OutputIterator itback = std::back_inserter( f );
68 for ( Quotient i = 1; i < argc; ++i)
70 Quotient u = atoll( argv[ i ] );
71 *itback++ = std::make_pair( u, i-1 );
73 std::cout <<
"z = " << f.p() <<
" / " << f.q() << std::endl;