Cod sursa(job #113569)
Utilizator | Data | 10 decembrie 2007 20:29:35 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
void main()
{ long a,b;
ifstream f ("adunare.in");
ofstream o ("adunare.out");
f>>a;
f>>b;
o<<a+b;
}