Files
claoj/cpp/aplusb.cpp
T
2025-11-28 23:45:47 +07:00

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;
}