Cod sursa(job #592384)

Utilizator alexnustieinfoalexandru flo alexnustieinfo Data 28 mai 2011 10:58:37
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;
ifstream fin("numere.in");
ofstream fout("numere.out");
int main()
{
 int a,b;
fin>>a;
fin>>b;

fout<<a+b;
fin.close();
fout.close();
return 0;
}