Cod sursa(job #223540)

Utilizator teo9bSimion Theodor-Emil teo9b Data 28 noiembrie 2008 19:22:37
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include<iostream.h>
#include<fstream.h>
int main ()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    long int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}