Cod sursa(job #394093)

Utilizator N_pHestOBalta Romeo-Ionut N_pHestO Data 10 februarie 2010 15:35:35
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

int a, b;

int main()
{
    fstream f ("adunare.in");
    fstream g ("adunare.out");

    f>>a>>b;
    g<<a+b;

    f.close();
    g.close();
    return 0;
}