#include <stdio.h> int main() { float a,b,c; scanf("%f",&a); scanf("%f",&b); scanf("%f",&c); c=a*b; printf("product of a and b is %f",c); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: