Cod sursa(job #1430334)
| Utilizator | Data | 8 mai 2015 11:01:27 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.17 kb |
#include <fstream>
int main()
{
std::ifstream fin{"adunare.in"};
std::ofstream fout{"adunare.out"};
int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}
