[Solved] Take a two digit positive integer as input from the user, and find the product of it’s digits
Take a two digit positive integer as input from the user, and find the product of it’s digits. print the product of the digits if the product is below 25, otherwise print “invalid”. Constraints 1 <= input_length <= 25 Input…