#include <stdio.h>
int main() {
double n1,n2;
printf("enter the first number:");
scanf("%lf", & n1);
printf("enter the first number:");
scanf("%lf", & n2);
double product= n1+n2;
printf("the product is %.3lf\n",product);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: