Cod sursa(job #1520588)
Utilizator | Data | 9 noiembrie 2015 03:40:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#incluse <fstream>
using namespace std;
int main()
{
long int a, b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> a >> b;
g << a + b;
f.close();
g.close();
return 0;
}