initial commit
This commit is contained in:
parent
b90421028e
commit
29d44cde63
22
1844A Subtraction Game/1844A.cpp
Normal file
22
1844A Subtraction Game/1844A.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#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();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user