There are two classes: an abstract class Meal with the template method and a concrete class Steak
Every meal is different, but the common algorithm is known.
You must implement the template method in Meal class to cook a meal with the following approach:
- Prepare the ingredients;
- Cook the meal;
- Enjoy the meal;
- Wash the dishes after the meal.
Please, do not change the provided code of the classes.