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