Cod sursa(job #1977143)

Utilizator ddoubleDavid Deiac ddouble Data 5 mai 2017 08:37:27
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;
int main()
{int a,b;
fstream f("adunare.in");
fstream g("adunare.out");
f>>a;f>>b;
g<<a+b;
f.close();
g.close();
}