Cod sursa(job #1933640)

Utilizator mike28Mihai Mardari mike28 Data 20 martie 2017 20:54:39
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>


using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{

    int a,b;
    f>>a;f>>b;
    f.close();
    g<<a+b;
    g.close();
    return 0;
}