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