Cod sursa(job #1491206)

Utilizator DragoszDragos Dragosz Data 24 septembrie 2015 22:18:10
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int a, b, suma;

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

    f>>a;
    f>>b;

    suma = a + b;

    g << suma << endl;
}