Cod sursa(job #2180569)

Utilizator liviu_gheorghe1234Liviu Gheorghe liviu_gheorghe1234 Data 20 martie 2018 22:49:23
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
using namespace std;
int main ()
{
    ifstream f("adunare.in");
    ofstream g("adumare.out");
    int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}