Multiply integers
Input
multiply(2, 3)
Output
6
2 * 3 equals 6.
Full lesson preview
Create a small function and include a clear docstring describing its behavior.
Problem statement
Task
Examples
Input
multiply(2, 3)
Output
6
2 * 3 equals 6.
Input format
Output format
Constraints
Samples
Input
multiply(2.5, 4)
Output
10.0
2.5 * 4 equals 10.0.