#include <stdio.h>

int main() 
{
    float a,b,c,sum;
    a=10.257;
    b=2589.257;
    c=18;
  sum=a+b+c;
    scanf("%f",&sum);
    printf("the sum of the three mumbers %f",sum);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: