Codeforces-SolutionsA/Codes/1844 A - Subtraction Game/1844A.cpp

22 lines
285 B
C++
Raw Normal View History

2023-07-16 22:32:33 +08:00
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
void solve()
{
ll a,b;
cin>>a>>b;
cout<<a+b<<endl;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int TC = 1;
cin >> TC;
cin.ignore();
while (TC--) solve();
}