Mai intai trebuie sa te autentifici.
Cod sursa(job #286579)
Utilizator | Data | 23 martie 2009 22:14:24 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream.h>
//////////////////////////////////////////////
ifstream fin("adunare.in");
ofstream fout("adunare.out");
/////////////////////////////////////////////
void main()
{
long a, b;
fin>>a>>b;
fout<<(a+b);
}