Cod sursa(job #1325930)

Utilizator EbolaMasterFodor Victor EbolaMaster Data 24 ianuarie 2015 15:06:40
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("date.in");
ofstream fout("date.out");
int main()
{   int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}