Cod sursa(job #525183)
Utilizator | Data | 24 ianuarie 2011 16:55:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
void main()
{
int a,b;
ifstream fin("adunarein.txt");
ofstream fout("adunareout.txt");
fin>>a>>b;
fout<<(a+b);
fin.close();
fout.close();
}