Cod sursa(job #1294358)

Utilizator HAVLEXHavlex Entertainment HAVLEX Data 17 decembrie 2014 14:03:04
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

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