Cod sursa(job #541983)

Utilizator LenishLeana Cristian Antoniu Lenish Data 25 februarie 2011 17:22:36
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream>
int main ()
{int a,b;
 ifstream f("adunare.in");
 f>>a;
 f>>b;
 f.close();
 ofstream g("adunare.out");
 g<<a+b;
 g.close();
 return 0;
}