Cod sursa(job #1112145)

Utilizator abel1090Abel Putovits abel1090 Data 19 februarie 2014 14:48:13
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
///A+B
#include<fstream>
using namespace std;

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

    long a, b;
    fin>>a>>b;
    fout<<a+b;

    return 0;
}