Cod sursa(job #955568)

Utilizator ScoobyDoo38Nita Adrian Valentin ScoobyDoo38 Data 1 iunie 2013 08:26:52
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>

using namespace std;

int main()
{
    int a, b;

    ifstream in("adunare.in");

    in >> a >> b;

    ofstream out("adunare.out");

    out << a + b;
}