Write code that does the following:
• Uses a lambda expression that accepts two int arguments, a and b, and returns the value of a * b.
• Assigns the lambda expression to a variable named multiply.
• Uses the multiply variable to call the lambda expression, passing the values 2 and
10 as arguments. The result should be assigned to an int variable named product.