Easy
Given an integer n, return the product of its digits minus the sum of its digits.
n
Input: n = 234 Output: 15 Explanation: product = 24, sum = 9, 24 - 9 = 15.
Input: n = 4421 Output: 21