Cod sursa(job #506104)

Utilizator aranhilChivu Stefan Iulian aranhil Data 5 decembrie 2010 05:34:36
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
long x,y;
int main()
{
    ifstream f("adunare.in");
    f>>x>>y;
    ofstream g("adunare.out");
    g<<x+y;
    f.close();
    g.close();
    return 0;
}