Cod sursa(job #2438492)
Utilizator | Data | 12 iulie 2019 16:53:24 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f >> a;
f >> b;
g << a + b;
return 0;
}