Cod sursa(job #1430998)
| Utilizator | Data | 8 mai 2015 22:46:26 | |
|---|---|---|---|
| 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;
}
