#include using namespace std; int main(){ int d,p; cin >> d >> p; cout << (p+d-1)/d << endl; }