You are playing a game with N cards that are marked from 1 to N. The rules of the game are as follows:
Write a program to determine the probability that the Xth card is the last one remaining.
Input format
The first and only line contains two space-separated integers N and X
Output format
Print the probability of the Xth card being the last-remaining card in the game.
Constraints
1≤N≤14
1≤X≤N
In this case both cards have equal probability of being present in the end as well equal probability of being destroyed.