// #include #include // cout, endl, cin #include // string, to_string, stoi #include // vector #include // min, max, swap, sort, reverse, lower_bound, upper_bound #include // pair, make_pair #include // tuple, make_tuple #include // int64_t, int*_t #include // printf #include // map #include // queue, priority_queue #include // set #include // stack #include // deque #include // unordered_map #include // unordered_set #include // bitset #include #include #include #include #include #define SIZE_OF_ARRAY(array) (sizeof(array) / sizeof(array[0])) #define rep(i, a, b) for (int i = a; i < b; i++) const long long INF = 1LL << 60; typedef long long ll; template inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } #define all(x) (x).begin(), (x).end() using namespace std; // 上下左右の移動用配列 // セットで上、右、下、左の順番 int dx[4] = {0, 1, 0, -1}; int dy[4] = {-1, 0, 1, 0}; int main(int, char **) { int a, b; cin >> a >> b; if (b % a != 0) { cout << (b / a + 1) << endl; } else { cout << b / a << endl; } }