Write a program to help a clinic calculate the Body Mass Index (BMI) of 50 patients. The program asks a person for his height in meters and his weight in kilograms.It then computes his BMI using the following equation:
BMI=weight/height^2
Then the program prints out the BMI and a comment on it. The comment is Thin if the BMI is less than 200, Normal if between 20 and 25, Overweight if between 25 and 30, and Fat if bigger than 30.