Cod sursa(job #2446836)

Utilizator AlexZV2014Zaharia Alex Valentin AlexZV2014 Data 10 august 2019 21:42:19
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

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