Cod sursa(job #1190428)

Utilizator DragosMDragos DragosM Data 25 mai 2014 13:00:41
Problema A+B Scor 0
Compilator cpp Status done
Runda itmarathon Marime 0.21 kb
#include <iostream>
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{int a,b;
    f>>a>>b;
    g<<a+b;
    return 0;
    f.close();
    g.close();
}