Problem Description
A = 111
Input 2:
A = 123
1
Output 2:
6
111 -> 1×1×1 = 1
Explanation 2:
123 -> 1×2×3 = 6
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.