Cod sursa(job #209807)

Utilizator Daniel0001Muntaenu Daniel Daniel0001 Data 24 septembrie 2008 22:35:53
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long A,B;
int main()
{f>>A>>B;
 g<<A+B;
 f.close();
 g.close();
 return 0;
}