#include using namespace std; int main(void) { int a, b, c; cin >> a >> b; while (a * c < b) { c++; } cout << c << endl; }