#include int main() { using namespace std; int A, B; cin >> A >> B; cout << (B / A + (B % A == 0 ? 0 : 1)) << endl; return 0; }