Second activity
Write a context manager with a method .print(str). This method should print the given string
indented as the recursive call.
Code example :
with IndentContext() as ic:
ic.print("One line")
ic.print("Another line")
with ic:
ic.print("An indented line")
ic.print("One more line")
One line
Another line
An indented line
One more line