diff --git a/cpp/aplusb.cpp b/cpp/aplusb.cpp new file mode 100644 index 0000000..3175201 --- /dev/null +++ b/cpp/aplusb.cpp @@ -0,0 +1,17 @@ +#include +using namespace std; + +int main() { + ios::sync_with_stdio(false); + cin.tie(nullptr); + + int N; + cin >> N; + + while (N--) { + long long a, b; + cin >> a >> b; + cout << a + b << "\n"; + } + return 0; +}