Cod sursa(job #2007214)

Utilizator TomaInfoBrihacescu Toma TomaInfo Data 2 august 2017 11:49:58
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
    int A,B;
    fin >> A;
    fin >> B;
    fout << A + B << endl;
    return 0;
}