Cod sursa(job #283873)
Utilizator | Data | 20 martie 2009 11:40:20 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream.h>
int main()
{
double long a,b;
ifstream In("adunare.in");
ofstream Out("adunare.out");
In>>a>>b;
Out<<a+b;
In.close();Out.close();
return 0;
}