Cod sursa(job #952837)
Utilizator | Data | 24 mai 2013 05:38:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <fstream>
using namespace std;
int main()
{
fstream fin("adunare.in", fstream::in);
fstream fout("adunare.out", fstream::out);
long long a, b;
fin >> a >> b;
fout << a + b << "\n";
return 0;
}