Cod sursa(job #1150711)
Utilizator | Data | 23 martie 2014 14:25:26 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
fstream f("adunare.in", ios::in);
fstream g("adunare.out", ios::out);
int main()
{ long int a,b;
f >> a >> b;
g << a+b;
return 0;
}