It's time to explain "self" parameter used in previous tasks.
"self" parameter is a Python convention.
"self" is the first parameter passed to any class method.
Python will use the "self" parameter to refer to the object being created.
Implement "add" method properly.