diff --git a/ybt/1000/1000.cpp b/ybt/1000/1000.cpp new file mode 100644 index 00000000..68147462 --- /dev/null +++ b/ybt/1000/1000.cpp @@ -0,0 +1,14 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int a, b; + +int main() { + std::ios::sync_with_stdio(false); + cin >> a >> b; + cout << a + b << endl; + return 0; +}