Cod sursa(job #691074)
Utilizator | Data | 26 februarie 2012 10:40:57 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.31 kb |
#include <iostream>
#include <fstream>
#include <vector>
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<char> v(99999999,'q');
return 0;
}