Any Base Subtraction Easy You are given a base b. You are given two numbers n1 and n2 of base b. You are required to subtract n1 from n2 and print the value. Example 1: Input: 8 1 100 Output: 77 Constraints: 2 <= b <= 10 0 <= n1 <= 256 0 <= n2 <= 256