mirror of
https://github.com/tiennm99/claoj.git
synced 2026-06-17 16:48:17 +00:00
feat(cpp): add aplusb
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user