Cod sursa(job #844951)

Utilizator paulhelmerPaul Helmer paulhelmer Data 30 decembrie 2012 00:24:57
Problema A+B Scor 100
Compilator cpp Status done
Runda 23dezile_2 Marime 0.22 kb
#include <fstream>
using namespace std;

int main()
{
    int a,b;
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    f >> a>>b;
    g<<a+b;
    f.close();
    g.close();



    return 0;
}