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