Any Base To Decimal

easy
1. You are given a number n.
2. You are given a base b. n is a number on base b.
3. You are required to convert the number n into its corresponding value in decimal number system.

Input Format

A number n A base b

Output Format

A decimal number representing corresponding value of n in base b.

Constraints

0 <= d <= 1000000000
2 <= b <= 10
  

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
111001
2
Output
57
Previous
Decimal To Any Base
Next
Any Base To Any Base

Related Questions