Decimal To Any Base
easy
1. You are given a decimal number n. 2. You are given a base b. 3. You are required to convert the number n into its corresponding value in base b.
Constraints
0 <= d <= 512 2 <= b <= 10
Format
Input
A number n A base b
Output
A number representing corresponding value of n in number system of base b
Example
Sample Input
57
2
Sample Output
111001
Question Video