#include main(){int n,m,i;std::cin>>n>>m;int a[n];for(i=n;--i;)std::cin>>a[i];std::sort(a,a+n);while(m>0)m-=a[i++];printf("%d",m?i-1:i);}