#include <stdio.h>

int main() {
float a,b,c;
scanf("%f%f",&a,&b);
c=a/b;
printf("%.3f",c);
    return 0;
}