Cod sursa(job #240932)

Utilizator stef1995mmarcu stefan ovidiu stef1995m Data 8 ianuarie 2009 22:02:11
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
void main()
{
   f>>a>>b;
   g<<a+b;
}