#include using namespace std; int main(){ int a,b,ans=0; cin >> a >> b; ans=(b%a==0)?b/a:b/a+1; cout << ans << endl; return 0; }