#include #include #include using u256 = boost::multiprecision::number>; int main() { std::cout << "Boost " << BOOST_VERSION << std::endl; u256 a{"0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBA"}; u256 b{"0x1DAE6076B981DAE6076B981DAE6076B981DAE6076B981DAE6076B981DAE6077"}; auto c = a / b; std::cout << c << std::endl; return 0; }