#include <stdio.h>

int main(void) {
		int w;
		float s, bmi;
		
	system("cls");	
	printf("\n  Dein Gewicht::");
	scanf("%d", &w);
	
	system("cls");
	printf("\n  Deine Groesse:");
	scanf("%f", &s);
	
	bmi = w / ( s * s );
	
	system("cls");
	printf("\n  Dein BMI ist: %f", bmi);
	system("pause");
	
	return 0;
}