Cod sursa(job #420533)
Utilizator | Data | 19 martie 2010 20:49:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream.h>
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
return 0;
}