Cod sursa(job #69875)
Utilizator | Data | 4 iulie 2007 12:36:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <cstdlib>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
int main()
{
long a,b;
in>>a>>b;
ofstream out("adunare.out");
out<<(a+b);
out.close();
return EXIT_SUCCESS;
}