Find the difference between two numbers using log function
Given two integers a and b, the task is to find the subtraction of a and b i.e, (a-b) using the log function. Note: We can not use the - operator. Examples: Input: a = 4, b = 81Output: -77 Input: a = -3, b = 16 Output: -19 Input: a = -3, b = -13 Output: 10 Approach: To write the solution to this que