Cod sursa(job #782982)
| Utilizator | Data | 1 septembrie 2012 15:30:07 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.44 kb |
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cctype>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <iostream>
#include <functional>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int MAXN = 1<<17;
int main() {
int a, b;
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
cin >> a >> b;
cout << a + b << endl;
return 0;
}
