Cod sursa(job #1485765)
| Utilizator | Data | 12 septembrie 2015 21:59:48 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.32 kb |
#include <fstream>
#include <algorithm>
#include <vector>
#include <set>
#include <limits>
#define INF numeric_limits<int>::max()
#define pb push_back
#define mp make_pair
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int x,y;
in>>x>>y;
out<<x+y<<'\n';
return 0;
}
