Cod sursa(job #1584337)
Utilizator | Data | 29 ianuarie 2016 22:34:49 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{ long A,B;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>A>>B;
g<<A+B;
f.close();
g.close();
}