Cod sursa(job #1396234)

Utilizator craciuCraciun Alex craciu Data 22 martie 2015 12:35:31
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>

using namespace std;

int main()
{
    ifstream fin("date.in");
    int a,b,s;
    fin>>a>>b;
    s=a+b;
    fin.close();
    ofstream fout("date.out");
    fout<<s<<endl;
    fout.close();
    return 0;
}