Cod sursa(job #678893)
Utilizator | Data | 12 februarie 2012 15:22:14 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream.h>
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
main()
{
long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
}