a01sa01to's competitive programming library.
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
#define PROBLEM "https://judge.yosupo.jp/problem/many_aplusb"
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int t;
cin >> t;
while (t--) {
ll a, b;
cin >> a >> b;
cout << a + b << '\n';
}
return 0;
}
#line 1 "tests/samples/many-aplusb.test.cpp"
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
#define PROBLEM "https://judge.yosupo.jp/problem/many_aplusb"
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int t;
cin >> t;
while (t--) {
ll a, b;
cin >> a >> b;
cout << a + b << '\n';
}
return 0;
}