Cod sursa(job #456434)
| Utilizator | Data | 15 mai 2010 17:01:16 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.29 kb |
#include<fstream>
#incluude<iostream>
using namespace std;
int main()
{
int a,b;
ifstream f("adunare.in");
f>>a;
f>>b;
ofstream g("adunare.out");
g<<a+b;
f.close();
g.close();
return 0;
}
