Cod sursa(job #1264290)

Utilizator vlad221221Andries Vlad vlad221221 Data 15 noiembrie 2014 18:00:14
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main();
{
    long int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
return 0;
}