Cod sursa(job #191863)
| Utilizator | Data | 29 mai 2008 12:14:10 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
fstream fin("adunare.in",ios::in);
long a,b;
fin>>a>>b;
fin.close();
fstream fout("adunare.out",ios::out);
fout<<a+b;
fout.close();
return 0;
}