Cod sursa(job #716148)
Utilizator | Data | 18 martie 2012 13:20:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.2 kb |
#include <fstream>
using namespace std;
fstream fin("adunare.in",ios::in),fout("adunare.out",ios::out);
int main()
{
int a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}