Cod sursa(job #2243)
| Utilizator | Data | 16 decembrie 2006 17:12:40 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream.h>
int main()
{
long a,b;
ifstream fin("adunare.in");
fin>>a;
fin>>b;
fin.close();
ofstream fout("adunare.out");
fout<<(a+b);
fout.close();
return 0;
}
