#include <bits/stdc++.h>
using namespace std;
int cnt[13];
int main()
{
//ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int n, x, ans = 0;
cin >> n >> x;
while(n--)
{
int a;
cin >> a;
cnt[a]++;
ans += a >= 10;
}
for(int i = 9; i > 0; i--)
while(cnt[i]--)
if(x >= 10 - i)
{
x -= 10 - i;
ans++;
}
cout << ans << "\n";
return 0;
}