Description

Mary has just graduated from one well-known University and is now attending celebration party. Students like to dream of a beautiful life, so they used champagne glasses to construct a small pyramid. The height of the pyramid is n. The top level consists of only 1 glass, that stands on 2 glasses on the second level (counting from the top), then 3 glasses on the third level and so on.The bottom level consists of n glasses.

Vlad has seen in the movies many times how the champagne beautifully flows from top levels to bottom ones, filling all the glasses simultaneously. So he took a bottle and started to pour it in the glass located at the top of the pyramid.

Each second, Vlad pours to the top glass the amount of champagne equal to the size of exactly one glass. If the glass is already full, but there is some champagne flowing in it, then it pours over the edge of the glass and is equally distributed over two glasses standing under. If the overflowed glass is at the bottom level, then the champagne pours on the table. For the purpose of this problem we consider that champagne is distributed among pyramid glasses immediately. Vlad is interested in the number of completely full glasses if he stops pouring champagne in t seconds.

Pictures below illustrate the pyramid consisting of three levels.

<center> </center>

Input

The only line of the input contains two integers n and t (1 ≤ n ≤ 10, 0 ≤ t ≤ 10 000) — the height of the pyramid and the number of seconds Vlad will be pouring champagne from the bottle.

Output

Print the single integer — the number of completely full glasses after t seconds.

Sample Input

Input
3 5
Output
4
Input
4 8
Output
6

rt,每秒钟导入一杯子容量的酒,问n层的金字塔,t秒后多少杯子满

死活就是没想到是杨辉三角啊,脑残的我就想把杨辉三角劈开==,然而只需要模拟一下也就知道下面的杯子酒由上面的导入,dp过程显而易见

#include <iostream>
#include<cstdio>
#include<cstring>
using namespace std;
double num[20][20];
int t,n;
void fun()
{
   // printf("t=%d\n",t);
    num[1][1]+=1.0;
    for(int i=1;i<=n;i++)//层数
    {
        for(int j=1;j<=i;j++)//位置
        {
            if(num[i][j]>1.0)
            {
                num[i+1][j]+=(num[i][j]-1.0)/2;
                num[i+1][j+1]+=(num[i][j]-1.0)/2;
                num[i][j]=1.0;
            }
          //  printf("i=%d,j=%d,num=%lf\n",i,j,num[i][j]);
        }
    }
}
int main()
{
    while(~scanf("%d%d",&n,&t))
    {
        memset(num,0,sizeof(num));
        while(t--) fun();
        int ans=0;
        for(int i=1;i<=n;i++)
            for(int j=1;j<=i;j++)
                if(num[i][j]>=1.0)
                    ans++;
        printf("%d\n",ans);
    }
    return 0;
}