Cod sursa(job #2427687)
Utilizator | Data | 1 iunie 2019 16:39:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream>
using namespace std;
int main()
{
int a, b;
string unu, doi;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> a;
f >> b;
g << a + b;
f.close();
g.close();
system("pause");
return 0;
}