Any Base Addition Easy You are given a base b. You are given two numbers n1 and n2 of base b. You are required to add the two numbes and print their value in base b. Example 1: Input: 8 777 1 Output: 1000 Constraints: 2 <= b <= 10 0 <= n1 <= 256 0 <= n2 <= 256