Cod sursa(job #140231)
| Utilizator | Data | 21 februarie 2008 16:08:26 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
int main()
{
double long a,b,s;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
s=a+b;
fout<<s<<endl;
fin.close();
fout.close();
return 0;
}