Cod sursa(job #1451543)
Utilizator | Data | 17 iunie 2015 15:58:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.35 kb |
//#pragma comment(linker, "/STACK:16777216")
#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//freopen("test.txt","r",stdin);
//freopen("taskname.in","r",stdin);
//freopen("taskname.out","w".stdout);
long long a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}