Cod sursa(job #690750)

Utilizator predator5047Butiu Alexandru Octavian predator5047 Data 25 februarie 2012 20:42:56
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.41 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(30,std::vector<long long>(30,-1));

    return 0;
}