Cod sursa(job #27931)

Utilizator ova1ovaSolomon Ovidiu ova1ova Data 7 martie 2007 12:15:54
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include "fstream.h"
#include "conio.h"
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{  int a,b;
 f>>a>>b;
   g<<a+b;
   return 0;}