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