Cod sursa(job #1627652)

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

using namespace std;

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

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