Cod sursa(job #1734450)
| Utilizator | Data | 27 iulie 2016 13:04:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main()
{int a,b;
fi>>a>>b;
fo<<a+b;
}
