Code Practice
Product
Easy
Given two integers, return their product.
Parameter(s):
Returns:
Constraints:
a ≠ null
b ≠ null
-2147483647 ≤ a ≤ 2147483647
-2147483647 ≤ b ≤ 2147483647
Example:
Input:
2 3
Output:
6