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