Cod sursa(job #191861)
Utilizator | Data | 29 mai 2008 11:58:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#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;
}