Cod sursa(job #203488)
| Utilizator | Data | 16 august 2008 22:27:27 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <fstream.h>
void main ()
{
long a, b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
}