#include #include using namespace std; int main(int argc, char const *argv[]) { cin.tie(0); ios::sync_with_stdio(false); long long a,b; cin >> a>>b; cout << (int)ceil((double)b/a) << "\n"; return 0; }