Cod sursa(job #314384)

Utilizator TheSun007Pantea Paul TheSun007 Data 11 mai 2009 18:27:37
Problema A+B Scor 0
Compilator c Status done
Runda Arhiva de probleme Marime 0.25 kb
#include<conio.h>
#include<iostream>
#include<fstream>

using namespace std;

int main()
{
    fstream f("adunare.in",ios::in);
    fstream g("adunare.out",ios::out);
    int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();    
}