Cod sursa(job #583479)
Utilizator | Data | 20 aprilie 2011 15:56:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.26 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fi;
ofstream fo;
long long a, b;
fi.open("adunare.in");
fi >> a >> b;
fi.close();
fo.open("adunare.out");
fo << a + b;
fo.close();
return 0;
}