2020-07-18 19:06:17 +00:00
|
|
|
#include "gm3p.hpp"
|
|
|
|
|
2020-07-18 20:47:00 +00:00
|
|
|
//#include <iostream>
|
2020-07-18 19:06:17 +00:00
|
|
|
|
|
|
|
using namespace gm3p;
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
gInt a("12234234234095780349859034869034635235", 10);
|
|
|
|
gInt b("123534622305820985092875207398734234753", 10);
|
|
|
|
|
|
|
|
gInt c = a * b;
|
|
|
|
|
|
|
|
std::cout << a << " * " << b << " = " << c << std::endl;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|