#include using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N, D, x, S=0; cin >> N >> D; for (int i=0; i> x; for (int i=0; i> x; S += x; } cout << (D+S-1)/S << endl; return 0; }