Cod sursa(job #1237907)
| Utilizator | Data | 5 octombrie 2014 09:16:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int main()
{int a, b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1>>a;
f1>>b;
f1.close();
f2<<a+b;
f2.close();
return 0;
}
