Cod sursa(job #345678)
Utilizator | Data | 4 septembrie 2009 10:07:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<fstream.h>
#include<iostream.h>
main()
{
unsigned long a,b;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}