mirror of
https://github.com/tiennm99/claoj.git
synced 2026-06-17 04:47:43 +00:00
18 lines
260 B
C++
18 lines
260 B
C++
#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;
|
|
}
|