Cod sursa(job #1256708)

Utilizator Kostel-DraghiciDraghici Costel Kostel-Draghici Data 6 noiembrie 2014 19:34:26
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{long int a,b;
ifstream f("date.in");
ofstream g("date.out");
f>>a>>b;
g<<a+b;
}