Cod sursa(job #2188334)
| Utilizator | Data | 27 martie 2018 09:05:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | bpc9 | Marime | 0.14 kb |
#include <fstream>
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main()
{
int a, b;
fi>>a>>b;
fo<<a + b;
}