Cod sursa(job #516496)
| Utilizator | Data | 24 decembrie 2010 14:02:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.12 kb |
#include<fstream.h>
void main ()
{int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<(a+b);
}