Create a new project in repl.it, called Products. You should include Classes called Products, Food, and Clothing. Here are the following requirements:
- The Product class acts as a parent class of both the Food and Clothing classes.
- The Product class should store a Product's name, UPC #, and Price
- The Food class should store an expiration date and a food type (Meat, Dairy, Vegetable, ect.)
- The Clothing class should store its size and material it is made from
- All classes should include both a default and a parameterized constructor, setters and Getters for all variables, and Override methods for toString() and equals().
- The main method may stay blank, but you are encouraged to use it to test your classes.