Cod sursa(job #1627658)

Utilizator cristi.razvan2015cristi razvan cristi.razvan2015 Data 3 martie 2016 18:14:56
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include<fstream>

using namespace std;

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

    long a,b;
    f >> a >> b;
    g << a+b;
    f.close();
    g.close();
    return 0;
}