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