There is a huge directed graph which contains $10^{18}$ nodes numbered from $1$ to $10^{18}$. There is a directed edge from $x$ to $y$ if and only if $x \lt y \leq 500 x$, and the length of the edge is $\ln \left\lfloor \left\lfloor \sqrt\frac{y}{x} \right\rfloor ^\frac{3}{2} \right\rfloor$, where $\ln$ is natural logarithm, and $\lfloor x \rfloor$ denotes the biggest integer that is not bigger than $x$.
You are given two integers $x$ and $y$ ($x \lt y$), and you need to find the **longest** path from $x$ to $y$. If the longest path is $d$, you just need to output $\lfloor e^d \rfloor$, where $e$ is the base of natural logarithm.