Cod sursa(job #1094594)
Utilizator | Data | 29 ianuarie 2014 16:59:34 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
#include <math.h>
using namespace std;
int main()
{
long a,b
fstream f("adunare.in");
f>>a;
f>>b;
f.close();
fstream g("adunare.out");
g<<a+b;
g.close();
}