#include using namespace std; int main() { int a, b; cin >> a >> b; int step = 0, count = 0; while (1){ step += a; count++; if (step >= b) break; } cout << count << endl; }