Cod sursa(job #11506)
| Utilizator | Data | 31 ianuarie 2007 19:45:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream.h>
#include<fstream.h>
void main()
{
ifstream f("adunare.in.cpp");
ofstream g("adunare.out.cpp");
unsigned long a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
}
