Cod sursa(job #110717)
Utilizator | Data | 27 noiembrie 2007 16:36:48 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
#include<iostream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
void main()
{int a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
}