feat(cpp): add aplusb

This commit is contained in:
2025-11-28 23:45:47 +07:00
parent 4c4f81dab7
commit 3d5610fdb9
+17
View File
@@ -0,0 +1,17 @@
#include <bits/stdc++.h>
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;
}