1 ///////////////////////////////////////////////////////////////////////////////
2 //  Copyright 2012 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <boost/multiprecision/cpp_dec_float.hpp>
7 #include <boost/multiprecision/cpp_int.hpp>
8 
9 using namespace boost::multiprecision;
10 
main()11 int main()
12 {
13    cpp_dec_float_50  a(2);
14    cpp_int           b(2);
15 
16    a = a + b;
17 }
18 
19