Cod sursa(job #690739)
| Utilizator | Data | 25 februarie 2012 20:38:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.3 kb |
#include <iostream>
#include <fstream>
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];
return 0;
}
