#include using namespace std; int main() { int S, F; cin >> S >> F; int floor = F / S + 1; cout << floor << endl; return 0; }