Problem 155. All your base are belong to us

Created by the cyclist

Find the base b logarithm of the input decimal number x. Express the output as a decimal number. The first argument is the number x, and the second argument is the base b.

Examples

logb(1024,2) ---> 10

logb(25,5) ---> 2

logb(100000,10) ---> 5

Problem Group

139 solvers submitted 188 solutions (1.35 solutions/solver).

Solution Comments