There are three classes: an abstract class called SocialNetwork, and two concrete classes, Instagram and Facebook.
Your task is to implement the abstract class SocialNetwork with a template method called connect() and three abstract methods using the following algorithm:
- Log in
- Post a message
- Log out
Make Instagram and Facebook inherit from the SocialNetwork class and implement the methods according to the console output.