Cod sursa(job #690755)

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

void foo(std::vector<std::vector<long long> > v2)
{

}

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();

    std::vector<std::vector<long long> > v(50,std::vector<long long>(50,-1));


    foo(v);

    return 0;
}