Imagine you are creating a system that manages different social media accounts. You've written a base class Account with parameters media, username and n_followers.
Now you want to create a subclass for a specific social media, let's say, Instagram. In addition to the attributes that any Account object has, you want to specify an attribute n_following.
Create the class InstagramAccount and override the __init__() method. The method should take parameters username, n_followers and n_following. The objects of the class InstagramAccount should also have the attribute media with the value "Instagram".
Don't forget to use the super() function!