Cod sursa(job #2138518)

Utilizator cristi0809pupeza pavel cristian cristi0809 Data 21 februarie 2018 18:22:59
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream fin("adunare.in.txt");
    ofstream fout("adunare.out.txt");
    int a,b,s;

    fin>>a>>b;

    s = a + b;
    fout<<s;
    return 0;
}