Add numbers


OK, so we know how to multiply two numbers. Let's now take a giant leap and try to add two numbers together.

It works as expected. We can move on to the next challenge.


examples/basics/add_numbers.py
a = 19
b = 23
c = a + b
print(c)    # 42