Exercise: Create lambda function I

Here, we create a lambda function and assign it to the variable multiply. However, there's a small mistake. Fix it to generate the expected output.
### adjust here ### multiply = lambda x, y: x + y
print(multiply(3, 3)) # expected 9 print(multiply(2, 4)) # expected 8
Python
Setting up Python environment...
Output