Cod sursa(job #2438463)
Utilizator | Data | 12 iulie 2019 16:08:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, b;
ifstream f("adunarein.txt");
ofstream g("adunareout.txt");
f >> a;
f >> b;
g << a + b;
return 0;
}