Cod sursa(job #724510)
Utilizator | Data | 26 martie 2012 16:54:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long a, b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}