Cod sursa(job #2176578)

Utilizator gfx96Vasilache Andrei gfx96 Data 17 martie 2018 19:29:14
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.23 kb
#include <iostream>
#include <fstream>


using namespace std;

int main()
{
    int a;
    int b;
    ifstream f("adunare.in");
    ofstream o("adunare.out");
    f>>a;
    f>>b;

    o<<a+b<<"\n";


    return 0;
}