Cod sursa(job #198445)

Utilizator AmethystIrina Patru Amethyst Data 11 iulie 2008 15:25:14
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fsteam.h>
void main()
{fstream f("adunare.txt",ios::in);
 fstream g("adunare.txt",ios::out);
 int a,b;
 f>>a>>b;
 g>>a+b;
 f.close();
 g.close();
 return 0;
}