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