Program to Division two integers of given base
Given three positive integers Base B, Dividend, and Divisor, where Dividend and Divisor are Base-B integers, the task is to find dividend/divisor. Examples: Input: Dividend = 513, Divisor = 7, B = 8Output: 57Explanation: The value of 513/7 in base 8 is 57. Input: Dividend = 400, Divisor = 20 B = 8Ou