Cod sursa(job #1329848)

Utilizator The4EverRadu Catalin-Gabriel The4Ever Data 29 ianuarie 2015 21:53:12
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;

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

}