Cod sursa(job #329681)
Utilizator | Data | 7 iulie 2009 08:56:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream>
int main()
{
long a,b;
fstream f("adunare.in",ios::in),g("adunare.out",ios::out);
f>>a>>b;g<<a+b;
f.close();g.close();
return 0;
}