Cod sursa(job #1132562)

Utilizator blackchangeMarius Blaj blackchange Data 3 martie 2014 17:12:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <fstream>

using namespace std;

int main()
{
    ifstream fcin("adunare.in");
    ofstream fcout("adunare.out");
    int a,b;
    fcin>>a>>b;
    fcout<<a+b;
    fcin.close();
    fcout.close();
    return 0;
}