Cod sursa(job #507962)
| Utilizator | Data | 7 decembrie 2010 10:19:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{int a,b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1>>a>>b;
f2<<a+b;
f1.close();
f2.close();
return 0;
}
