Compare given two powers of 10
Given 4 integers A, B, Z1, and Z2. The task is to compare A*10Z1 and B*10Z2. Examples: Input: A = 19, Z1 = 2, B = 20, Z2 = 1Output: A > BExplanation:A can be written as 1900 B can be written as 200 So, A is greater than B. Input:, A = 199, Z1 =10, B = 96, Z2 = 1000Output: A < BExplanation:A ca