Cod sursa(job #23622)
| Utilizator | Data | 1 martie 2007 08:56:32 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
void main()
{
int a,b;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
f >> a; endl;
f >> b;
g << a+b;
}
