Cod sursa(job #1500846)
| Utilizator | Data | 12 octombrie 2015 19:07:46 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <fstream>
using namespace std;
int main()
{
long a,b;
fstream fin("adunare.in",ios::in);
fstream fout("adunare.out",ios::out);
fin >> a >> b;
fin.close();
fout << a+b;
fout.close();
return 0;
}
