Cod sursa(job #2197008)

Utilizator LEGACYSBogatu Daniel LEGACYS Data 20 aprilie 2018 21:14:44
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

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

    return 0;
}