Cod sursa(job #1251071)

Utilizator welldownAndrei Mihai welldown Data 28 octombrie 2014 21:57:08
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<fstream>

using namespace std;

ifstream f("date1.in");
ofstream g("date1.out");

int main()
{
   long int a,b;
   f>>a>>b;
   g<<a+b;
   f.close();
   g.close();

    return 0;
}