Cod sursa(job #198911)
Utilizator | Data | 15 iulie 2008 20:56:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
void main()
{int a,b;
ifstream fin("adunare.in");
fin>>a>>b;
fin.close();
ofstream fout("adunare.out");
fout<<a+b;
fout.close();
}