Cod sursa(job #1740449)

Utilizator thelittleRadu Vrinceanu thelittle Data 11 august 2016 16:44:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

using namespace std;

ifstream fin ("adunare.in");
ofstream fout ("adunare.out");

int main()
{
    int a, b, S;
    fin>>a; fin>>b;
    S=a+b;
    fout<<S;
    return 0;
}