Cod sursa(job #520914)

Utilizator zuberalAndi CA zuberal Data 10 ianuarie 2011 19:12:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream.h>
int main()
{
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int a,b;
fi>>a>>b;
fo<<a+b;
fi.close();
fo.close();
return 0;
}