CF1141A.Game 23

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Game 23

Polycarp plays "Game 23". Initially he has a number nn and his goal is to transform it to mm. In one move, he can multiply nn by 22 or multiply nn by 33. He can perform any number of moves.

Print the number of moves needed to transform nn to mm. Print -1 if it is impossible to do so.

It is easy to prove that any way to transform nn to mm contains the same number of moves (i.e. number of moves doesn't depend on the way of transformation).

Input

The only line of the input contains two integers nn and mm (1nm51081 \le n \le m \le 5\cdot10^8).

Output

Print the number of moves to transform nn to mm, or -1 if there is no solution.

Note

In the first example, the possible sequence of moves is: $120 \rightarrow 240 \rightarrow 720 \rightarrow 1440 \rightarrow 4320 \rightarrow 12960 \rightarrow 25920 \rightarrow 51840.$ The are 77 steps in total.

In the second example, no moves are needed. Thus, the answer is 00.

In the third example, it is impossible to transform 4848 to 7272.

Samples

120 51840
7
42 42
0
48 72
-1

在线编程 IDE

建议全屏模式获得最佳体验