#include "bits/stdc++.h" using namespace std; int main() { long a,b; cin >> a >> b; cout << (long)ceil(b/a) << endl; }