Cod sursa(job #151599)
Utilizator | Data | 8 martie 2008 14:05:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<fstream.h>
using namespace std;
int main()
{fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
long long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}