#include<stdio.h> int main(void) { double Q,R,E; scanf("%lf%lf",&Q,&R); E=(Q/R)*(Q/R); printf("%.4lf",E); getch(); return 0; }