#include<stdio.h>


main(){

	float a, b, c;

	printf("Enter three floating-point numbers:\n");
	scanf("%f %f %f",&a, &b, &c);
	printf("Sum is %.4f\n",a+b+c);
	printf("Product is %.4f\n",a*b*c);
	
}