#include <stdio.h>

int main(void) {
	float first,second;
	
	printf("\n please enter first number:");
	scanf("%f",&first);
	printf("\n now,enter second number: ");
	scanf("%f",&second);
	float result=first*second;
	printf("the produt of the numbers is %f",result);
	return 0;
}
