Cod sursa(job #517962)

Utilizator ilucianIlea Lucian ilucian Data 30 decembrie 2010 11:59:42
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int a,b;
int main()
{
    fi>>a>>b;
    fo<<a+b;
    fi.close();
    fo.close();
    return 0;
}