CSES - Dice Probability
  • Time limit: 1.00 s
  • Memory limit: 512 MB

You throw a dice nn times, and every throw produces an outcome between 11 and 66. What is the probability that the sum of outcomes is between aa and bb?

Input

The only input line contains three integers nn, aa and bb.

Output

Print the probability rounded to six decimal places (rounding half to even).

Constraints

  • 1n1001 \le n \le 100
  • 1ab6n1 \le a \le b \le 6n

Example

Input:

2 9 10

Output:

0.194444