Cod sursa(job #363202)

Utilizator zEyzEr94Popescu andrei 9E zEyzEr94 Data 12 noiembrie 2009 10:12:24
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<fstream.h>
void main()
{int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f.close();
g.close();
f>>a>>b;
g<<a+b;
}