Cod sursa(job #284455)
Utilizator | Data | 21 martie 2009 18:32:33 | |
---|---|---|---|
Problema | A+B | Scor | Ascuns |
Compilator | cpp | Status | done |
Runda | a | Marime | 0.15 kb |
#include<fstream.h>
long a,b;
int main ()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}