Cod sursa(job #232826)
Utilizator | Data | 16 decembrie 2008 08:58:23 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
main()
{
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
}