Cod sursa(job #458463)

Utilizator teseusAlin Mihai teseus Data 24 mai 2010 22:04:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream.h>
#include <fstream.h>


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