Cod sursa(job #2446840)

Utilizator AlexZV2014Zaharia Alex Valentin AlexZV2014 Data 10 august 2019 21:50:26
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda teme_upb Marime 0.22 kb
#include <fstream>

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