Cod sursa(job #667356)

Utilizator handz.FMI Andrei Tanasescu handz. Data 22 ianuarie 2012 22:22:03
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

using namespace std;

int main()
{
    int a,b;
    f>>a;
    f>>b;
    g<<a+b;
    return 0;
}