#include using namespace std; int main() { // 入力 int a, b; cin >> a >> b; // 解答 cout << (b + a - 1) / a << endl; return 0; }