Cod sursa(job #2446848)

Utilizator AlexZV2014Zaharia Alex Valentin AlexZV2014 Data 10 august 2019 22:16:38
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,s;
int main()
{
    f>>a;
    f>>b;;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}