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