#include using namespace std; const int S = 100; double dp[15][2*S]; int main() { int N, K; scanf("%d%d", &N, &K); dp[0][S] = 1.0; for(int i=0; i