Cod sursa(job #9276)
| Utilizator | Data | 27 ianuarie 2007 13:49:50 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <fstream.h>
long a,b;
ifstream f ("adunare.in");
ofstream g ("adunare.out");
int main()
{f>>a>>b;
g<<a+b;
return 1;
}