#include <stdio.h>

int main() 
{
    float a,b;
    printf("Enter the values for a and b\n");
    scanf("%d %d",&a,&b);
    printf("A is :%d\n",a);
    printf("B is :%d\n",b);
    printf("Product of a and b:%f\n",a/b); 
return 0;
}