42.3. First assignment#

Calculate the value of 1 + 2 + 3, and store it in a variable named my_sum.

# Your code here
# Let's verify that the implementation is correct by running the cell below
# `assert` will raise `AssertionError` if the statement is not true.
assert my_sum == 6