Cod sursa(job #743897)

Utilizator GabiBGSBlaga Florentin Gabriel GabiBGS Data 6 mai 2012 18:55:29
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.29 kb
#include<iostream>
#include<fstream>

using namespace std;

int main(void)
{

    ifstream ifile;
    ofstream ofile;

    ifile.open("date.in");
    ofile.open("date.out");

    int nr1, nr2;

    ifile >> nr1;
    ifile >> nr2;

    ofile << nr1 + nr2;

    return 0;

}