Cod sursa(job #1626124)
Utilizator | Data | 2 martie 2016 22:41:50 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, b;
fstream fin("adunare.in");
fin >> a;
fin >> b;
fin.close();
ofstream fout("adunare.out");
fout << a + b;
return 0;
}