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