Cod sursa(job #2446850)

Utilizator AlexZV2014Zaharia Alex Valentin AlexZV2014 Data 10 august 2019 22:31:17
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda teme_upb Marime 0.21 kb
#include <fstream>

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