Cod sursa(job #213273)
Utilizator | Data | 9 octombrie 2008 01:01:10 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <stdio.h>
#include <algorithm>
using namespace std;
double a, b;
int main()
{
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%lf %lf", &a, &b);
printf("%.2Lf\n", a + b);
return 0;
}