Cod sursa(job #1399384)
Utilizator | Data | 24 martie 2015 18:42:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <fstream>
#include <algorithm>
#include <vector>
#define x first
#define y second
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int n,i,j,v[1000],ok;
int main()
{
fin>>i>>j;
fout<<i+j;
}