There are three classes: an abstract class Career, and two concrete classes, Engineer and DataScientist.
Your task is to implement the abstract class Career with a template method called execute() and an abstract method called work() using the following algorithm:
- Dream
- Plan
- Study
- Work
Make the classes Engineer and DataScientist inherit from the Career class and implement the methods according to the console output.