Cod sursa(job #592386)
Utilizator | Data | 28 mai 2011 11:01:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | 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;
}