Cod sursa(job #1112571)
| Utilizator | Data | 19 februarie 2014 21:00:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{ int a,b ;
ifstream f("a+b.in");
ofstream g("a+b.out");
f >> a>>b;
g<<a+b ;
f.close() ;
g.close() ;
return 0;
}
