Cod sursa(job #2591746)
Utilizator | Data | 31 martie 2020 10:47:59 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
ifstream f("adunare.in.txt");
ofstream g("adunare.out.txt");
int main()
{
long int a, b;
f >> a >> b;
g << a + b;
f.close();
g.close();
}