You are tasked to provide a Fat Gram Calculator program for alocal Weight Loss Center. The program should ask the user for thename of a food item, the number of calories and the number of fatgrams in the item. The program should display the percentage ofcalories that come from fat. If the calories from fat are less than30 percent of the total calories of the food, it should display amessage indicating that the food is low in fat. If the percentageis equal to or higher than 30 percent the message should indicatethat the food is high in fat.
One gram of fat has 9 calories, so
         caloriesfrom fat = fat grams * 9
The percentage of calories from fat can be calculated as
         Percent Fat =Calories from fat / total calories
Input validation: The program should make sure that thenumber of calories is greater than 0, the number of fat grams is 0or more, and the number of calories from fat is not greater thanthe number of calories input.