Cod sursa(job #134975)
Utilizator | Data | 12 februarie 2008 19:08:48 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
int void main()
{ifstream i("adunare.in");
ofstream o("adunare.out");
long a,b;
i>>a>>b;
o<<(a+b);
i.close();
o.close(); }