Cod sursa(job #229430)

Utilizator bobi8393Sirbu Robert bobi8393 Data 10 decembrie 2008 09:35:20
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
long a,b,s=0;
int main()
{



ifstream fin("adunare.in");
fin>>a>>b;
fin.close();
ofstream fout("adunare.out");
s=a+b;
fout<<s;
fout.close();
return 0;
}