Cod sursa(job #8291)
Utilizator | Data | 24 ianuarie 2007 09:35:54 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
long int a,b,s;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
void main()
{fin>>a;
fin>>b;
s=a+b;
fout<<s;
fin.close()
fout.close()}