Cod sursa(job #890000)
| Utilizator | Data | 24 februarie 2013 20:10:40 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{int a,b;
f>>a;
f>>b;
g<<(a+b);
g.close();
f.close();
return 0;
}
