Cod sursa(job #1652088)

Utilizator dragos000Cojanu Dragos dragos000 Data 14 martie 2016 17:03:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

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