CodeForces and other OJ will not accept including any other files or headers except from compiler's included header. So you cannot use it by importing from another file in OJ.
But if you want to use it locally you can do that. For that download or copy the content of Bigint.cpp to your source's location. Maybe like mine.
├── bigint.h
└── main.cpp
Note: I renamed Bigint.cpp to bigint.h
Then you can write your code in main.cpp (or whatever you want). Just include it as an header. Maybe something like this.
1 #include <bits/stdc++.h>
2
3 using namespace std;
4
5 #include "bigint.h"
6
7 int main (){
8 bigint b(1000);
9 cout << b.size() << endl;
10 return 0;
11 }
To use it in problem solving you just have to copy the entire code into your source file [After defining namespace and including headers].
Like the comment suggests don't just blindly use others' codes. Read through the code to understand.