Count of m digit integers that are divisible by an integer n
Given two numbers m and n, count number of m digit numbers that are divisible by n.Examples: Input: m = 2, n = 6Output: 15Explanation: Two digit numbers that are divisible by 6 are 12, 18, 24, 30, 36, ....., 96. Input: m = 3, n = 5Output: 180 A simple solution is two try all m digit numbers. For eve