diff --git a/Luogu/problem/B2001/B2001.cpp b/Luogu/problem/B2001/B2001.cpp new file mode 100644 index 00000000..8a2c87e5 --- /dev/null +++ b/Luogu/problem/B2001/B2001.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + long long a, b; + cin >> a >> b; + cout << a + b << endl; + return 0; +}