Cod sursa(job #1426186)
| Utilizator | Data | 29 aprilie 2015 08:31:43 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream IN("adunare.in");
int a, b;
IN >> a >> b;
IN.close();
ofstream OUT("adunare.out");
OUT << a + b << endl;
OUT.close();
return 0;
}