Cod sursa(job #690745)

Utilizator predator5047Butiu Alexandru Octavian predator5047 Data 25 februarie 2012 20:40:21
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.35 kb
#include <iostream>
#include <fstream>

void foo(long long d[])
{

}

int main()
{
    int a,b;

    std::ifstream fin("adunare.in");

    fin >> a >> b;

    fin.close();

    std::ofstream fout("adunare.out");

    fout << a + b;

    fout.close();

    long long d[99999];
    long long d2[99999];

    foo(d);

    return 0;
}