Cod sursa(job #2427686)
| Utilizator | Data | 1 iunie 2019 16:38:57 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| 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("anunare.out");
f >> a;
f >> b;
g << a + b;
f.close();
g.close();
system("pause");
return 0;
}