fork(2) download
  1. #include <boost/multiprecision/cpp_int.hpp>
  2. #include <iostream>
  3. namespace mp = boost::multiprecision;
  4. using namespace std;
  5. int main()
  6. {
  7. mp::cpp_int u;
  8. mp::cpp_int v;
  9. mp::cpp_int z;
  10. cin>>u>>v;
  11. z=u*v;
  12. cout<<z<<endl;
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 3520KB
stdin
111111
111111
stdout
12345654321