The LinBox arbitrary precision integer type illustrated.
The class `integer' is a wrapper of GMP integers.
- Author
- Gilles Villard
#include <iostream>
#include <fstream>
int main()
{
cout << "1st integer > ";
cin >> a;
cout << "2nd integer > ";
cin >> b;
cout << "The product " << a*b << "\n";
return 0;
}