#include using namespace std; int main() { int a, b, i = 0; cin >> a >> b; while (b - a * i > 0) i++; cout << i << endl; }