Cod sursa(job #267683)

Utilizator alexgavruGavruta Alex alexgavru Data 27 februarie 2009 21:11:47
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;
int main()
{
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}