#include <stdio.h>
int main()
{
double x, y;
printf("Enter x <space> y: ");
scanf("%lf %lf", &x, &y);
printf("x * y = %lf and x / y = %lf\n", x * y, x / y);
}
#include <stdio.h>
int main()
{
double x, y;
printf("Enter x <space> y: ");
scanf("%lf %lf", &x, &y);
printf("x * y = %lf and x / y = %lf\n", x * y, x / y);
}