Cod sursa(job #1673249)

Utilizator andreicengherAndrei Cengher andreicengher Data 3 aprilie 2016 16:33:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <iostream>
#include <fstream>
using namespace std;
int a,b,c;
int main()
{
    ifstream fin ("adunare.in");
    ofstream fout ("adunare.out");

    fin>>a>>b;
    c=a+b;
    fout<<c;

fin.close();
fout.close();
    return 0;
}