Cod sursa(job #200527)

Utilizator robigiirimias robert robigi Data 24 iulie 2008 14:35:53
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <fstream>
using namespace std;

ifstream f ("adunare.in");
ofstream g ("adunare.out");

int maint()
{   long x, y;
    f >> x;
    f >> y;
    g << x+y << endl;
    f.close();
    g.close();
    return 0;
}