Cod sursa(job #2415198)

Utilizator bluestorm57Vasile T bluestorm57 Data 25 aprilie 2019 16:52:59
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda probleme_de_oni-runda2019 Marime 0.18 kb
#include <fstream>

using namespace std;

ifstream f("adunare.in");
ofstream g("adunare.out");

int main(){
    int a,b;
    f >> a >> b;
    g << a + b;

return 0;
}