Hide

Problem L
Spidey Distance

Consider a 2D plane of points with integer coordinates. The Taxi-cab Distance between two points is a measure of the shortest path between the points where movement is restricted to only horizontal and vertical paths, similar to following the lines on traditional graph paper. Each point connects to exactly four others, and each is one unit away.

The Spidey Distance is a similar measure of the shortest path, but allows movement horizontally, vertically, or along diagonal paths. Horizontal and vertical points are separated by one unit, but diagonal points are $1.5$ units away. Thus, each point connects to eight other points, four of which are one unit away and four of which are $1.5$ units away.

Write a program to compute the fraction of the number of points reachable via a given taxi-cab distance from a point, within an area defined by a spidey distance around that point.

Input

The single line of input contains two integers $t$ and $s$ ($0 \le t,s \le 10^6$), where $t$ is a taxi-cab distance, and $s$ is a spidey distance.

Output

Output a fraction in the form $n$/$d$, which is the fraction of points within the given spidey distance that can also be reached within the given taxi-cab distance. Output this fraction reduced to lowest form. If $d=1$ only output $n$. Do not output any spaces around the $/$.

Sample Input 1 Sample Output 1
4 4
41/49
Sample Input 2 Sample Output 2
6 6
17/21
Sample Input 3 Sample Output 3
3 7
25/141
Sample Input 4 Sample Output 4
7 3
1

Please log in to submit a solution to this problem

Log in