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