Any Base Multiplication Easy You are given a base b. You are given two numbers n1 and n2 of base b. You are required to multiply n1 and n2 and print the value. Example 1: Input: 5 1220 31 Output: 43320 Constraints: 2 <= b <= 10 0 <= n1 <= 256 0 <= n2 <= 256