Cod sursa(job #241002)

Utilizator IcestrikeROnete Paul IcestrikeR Data 9 ianuarie 2009 08:53:32
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
using namespace std;
void main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();}