Cod sursa(job #14838)

Utilizator AndreiMathAndrei Velicu AndreiMath Data 9 februarie 2007 23:07:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream.h>
int a, b;
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;}