#include <stdio.h>

int main(void) {
	
	//Deklaration
	int Gewicht;
	float Groeße;
	float BMI;
	
	//Eingabe
	scanf("%d %f", &Gewicht, &Groeße);

	BMI = Gewicht/(Groeße*Groeße);


	//Ausgabe:
	printf("Der Body-Mass-Index:\n");
	printf("%f=%d/(%f*f%)\n",BMI,Gewicht,Groeße,Groeße);
	return 0;
}
