#include<stdio.h>
#include<stdlib.h> main()
{
double a,b; scanf("%lf%lf",&a,&b); printf("%.5lf ",a/b);
return 0 ;
}