Cod sursa(job #732050)
| Utilizator | Data | 9 aprilie 2012 16:49:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
int main(int argv, char **argc)
{
std::ifstream fin("adunare.in");
std::size_t a, b;
fin >> a >> b;
fin.close();
std::ofstream fout("adunare.out");
fout << a + b << std::endl;
fout.close();
}
