Cod sursa(job #691082)
Utilizator | Data | 26 februarie 2012 10:42:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
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<bool> v(999999,true);
return 0;
}