Let's consider a random permutation p1, p2, ..., pN of numbers 1, 2, ..., N and calculate the value F=(X2+...+XN-1)K, where Xi equals 1 if one of the following two conditions holds: pi-1 < pi > pi+1 or pi-1 > pi < pi+1 and Xi equals 0 otherwise. What is the expected value of F?
Input Format:
The first line contains two integers K and N.
Output Format:
Print the expected value of F as an irreducible fraction p / q. Follow sample input for more clarification.
Constraints:
1000 <= N <= 109
1 <= K <= 5
Sample input
1 1000
Sample Output
1996 / 3