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