Cod sursa(job #256521)
| Utilizator | Data | 11 februarie 2009 20:57:46 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
long double a,b;
void main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<a+b;
in.close();
out.close();
}
