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