Cod sursa(job #1251072)

Utilizator welldownAndrei Mihai welldown Data 28 octombrie 2014 21:57:29
Problema A+B Scor 0
Compilator cpp 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;
}