Cod sursa(job #1294353)

Utilizator HAVLEXHavlex Entertainment HAVLEX Data 17 decembrie 2014 14:01:03
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int main()
{
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}