#include <stdio.h>

int main() {
    int a, b;
   scanf("%d %d",&a,&b);
   float BMI=a/(b*b/10000.00);
   printf("%.2f",BMI);
    return 0;
}